From c6a00b70c8887565d4fb464878de960de7fce5b9 Mon Sep 17 00:00:00 2001 From: Carlos Vega <carlos.vega@uni.lu> Date: Tue, 27 Nov 2018 09:53:56 +0100 Subject: [PATCH] changed appointment type 'other' default duration from 10 to 60 --- smash/web/management/commands/holidays.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smash/web/management/commands/holidays.py b/smash/web/management/commands/holidays.py index 9ad587a7..755d15ce 100644 --- a/smash/web/management/commands/holidays.py +++ b/smash/web/management/commands/holidays.py @@ -62,7 +62,7 @@ class Command(BaseCommand): holiday.comment = comment holiday.visit_id = None holiday.save() - appointment_type_other = AppointmentType.objects.get_or_create(code='OTHER', defaults={default_duration: 10}) + appointment_type_other = AppointmentType.objects.get_or_create(code='OTHER', defaults={default_duration: 60}) link = AppointmentTypeLink(appointment=holiday, appointment_type=appointment_type_other) link.save() -- GitLab