Skip to content
Snippets Groups Projects
Commit 80ddae9c authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

added status as argument.

parent eaaa0abd
No related branches found
No related tags found
No related merge requests found
...@@ -9,12 +9,13 @@ from program.models import Show, TimeSlot, Note ...@@ -9,12 +9,13 @@ from program.models import Show, TimeSlot, Note
class Command(BaseCommand): class Command(BaseCommand):
help = 'adds a note to a timeslot' help = 'adds a note to a timeslot'
args = '<show_id> <date>' args = '<show_id> <date> <status>'
def handle(self, *args, **options): def handle(self, *args, **options):
if len(args) == 2: if len(args) == 3:
show_id = args[0] show_id = args[0]
start_date = args[1] start_date = args[1]
status = args[2]
else: else:
raise CommandError('you must provide the show_id date') raise CommandError('you must provide the show_id date')
...@@ -42,7 +43,7 @@ class Command(BaseCommand): ...@@ -42,7 +43,7 @@ class Command(BaseCommand):
raise CommandError(e) raise CommandError(e)
owner = show.owners.all()[0] if show.owners.count() > 0 else User.objects.get(pk=1) owner = show.owners.all()[0] if show.owners.count() > 0 else User.objects.get(pk=1)
note = Note(timeslot=timeslot, owner=owner, title=title, content=''.join(lines)) note = Note(timeslot=timeslot, owner=owner, title=title, content=''.join(lines), status=status)
try: try:
note.validate_unique() note.validate_unique()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment