Skip to content
Snippets Groups Projects
Commit c6a00b70 authored by Carlos Vega's avatar Carlos Vega
Browse files

changed appointment type 'other' default duration from 10 to 60

parent 77ff2687
No related branches found
Tags v1.5.0
1 merge request!188Feature/improve management of visits from subject list
Pipeline #7658 passed
......@@ -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()
......
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