Skip to content
Snippets Groups Projects

Bug/fix requirements and code for tests to pass

Merged Carlos Vega requested to merge bug/fix_requirements_and_code_for_tests_to_pass into devel_0.12.x
2 files
+ 56
22
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -4,9 +4,6 @@ from django.core.management.base import BaseCommand
from ...models import Appointment, Location, AppointmentType, AppointmentTypeLink
appointment_type_other = AppointmentType.objects.filter(code='OTHER').first()
def get_easter_monday(easter_sunday):
return next_weekday(easter_sunday, 0)
@@ -64,6 +61,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: 60})
link = AppointmentTypeLink(appointment=holiday, appointment_type=appointment_type_other)
link.save()
@@ -92,4 +90,4 @@ def next_weekday(day_datetime, week_day):
days_ahead = week_day - day_datetime.weekday()
if days_ahead <= 0:
days_ahead += 7
return day_datetime + datetime.timedelta(days_ahead)
return day_datetime + datetime.timedelta(days_ahead)
\ No newline at end of file
Loading