This commit is contained in:
msquare 2023-12-27 12:47:49 +01:00
parent caa699ff05
commit ea9aa9ef40
1 changed files with 5 additions and 1 deletions

View File

@ -92,7 +92,10 @@ class ImportSchedule extends BaseController
{ {
$scheduleId = $request->getAttribute('schedule_id'); // optional $scheduleId = $request->getAttribute('schedule_id'); // optional
$schedule = ScheduleUrl::findOrFail($scheduleId); $schedule = ScheduleUrl::find($scheduleId);
if ($schedule == null) {
$schedule = new ScheduleUrl();
}
return $this->response->withView( return $this->response->withView(
'admin/schedule/edit.twig', 'admin/schedule/edit.twig',
@ -421,6 +424,7 @@ class ImportSchedule extends BaseController
$scheduleShift = ScheduleShift::whereGuid($event->getGuid())->where('schedule_id', $schedule->id)->first(); $scheduleShift = ScheduleShift::whereGuid($event->getGuid())->where('schedule_id', $schedule->id)->first();
$shift = $scheduleShift->shift; $shift = $scheduleShift->shift;
$shift->delete(); $shift->delete();
$scheduleShift->delete();
$this->fireDeleteShiftEntryEvents($event, $schedule); $this->fireDeleteShiftEntryEvents($event, $schedule);