engelsystem/includes/pages/admin_shifts.php

620 lines
26 KiB
PHP
Raw Permalink Normal View History

2011-09-06 20:45:06 +02:00
<?php
2014-12-07 17:34:29 +01:00
2022-04-13 01:02:37 +02:00
use Engelsystem\Helpers\Carbon;
2022-11-09 00:02:30 +01:00
use Engelsystem\Models\AngelType;
2023-10-15 19:25:55 +02:00
use Engelsystem\Models\Location;
2023-01-22 18:43:09 +01:00
use Engelsystem\Models\Shifts\NeededAngelType;
2023-01-03 22:19:03 +01:00
use Engelsystem\Models\Shifts\Shift;
use Engelsystem\Models\Shifts\ShiftType;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Support\Str;
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function admin_shifts_title()
{
return __('Create shifts');
2013-11-25 21:04:58 +01:00
}
2011-09-06 20:45:06 +02:00
2017-01-03 03:22:48 +01:00
/**
* Assistent zum Anlegen mehrerer neuer Schichten
*
* @return string
*/
2017-01-02 03:57:23 +01:00
function admin_shifts()
{
$valid = true;
$request = request();
2017-08-30 19:57:01 +02:00
$session = session();
2023-01-03 22:19:03 +01:00
$start = Carbon::createFromDateTime(date('Y-m-d') . 'T00:00');
2017-01-02 03:57:23 +01:00
$end = $start;
$mode = 'multi';
$angelmode = 'manually';
2017-01-02 03:57:23 +01:00
$length = '';
$change_hours = [];
2017-01-03 14:12:17 +01:00
$title = '';
2017-01-02 03:57:23 +01:00
$shifttype_id = null;
2021-11-27 11:34:20 +01:00
$description = null;
// When true: creates a shift beginning at the last shift change hour and ending at the first shift change hour
$shift_over_midnight = true;
2017-01-02 15:43:36 +01:00
2017-12-10 18:56:40 +01:00
// Locations laden
2023-10-15 19:25:55 +02:00
$locations = Location::orderBy('name')->get();
$no_locations = $locations->isEmpty();
2023-10-15 19:25:55 +02:00
$location_array = $locations->pluck('name', 'id')->toArray();
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
// Load angeltypes
2024-03-25 00:03:39 +01:00
/** @var AngelType[]|Collection $types */
2022-11-09 00:02:30 +01:00
$types = AngelType::all();
$no_angeltypes = $types->isEmpty();
2017-01-02 03:57:23 +01:00
$needed_angel_types = [];
foreach ($types as $type) {
2022-11-09 00:02:30 +01:00
$needed_angel_types[$type->id] = 0;
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
// Load shift types
/** @var ShiftType[]|Collection $shifttypes_source */
$shifttypes_source = ShiftType::all();
$no_shifttypes = $shifttypes_source->isEmpty();
2017-01-02 03:57:23 +01:00
$shifttypes = [];
foreach ($shifttypes_source as $shifttype) {
$shifttypes[$shifttype->id] = $shifttype->name;
2014-12-22 17:55:20 +01:00
}
2017-01-02 15:43:36 +01:00
if ($request->has('preview') || $request->has('back')) {
if ($request->has('shifttype_id')) {
$shifttype = ShiftType::find($request->input('shifttype_id'));
2018-01-14 17:47:26 +01:00
if (empty($shifttype)) {
2017-01-02 03:57:23 +01:00
$valid = false;
error(__('Please select a shift type.'));
2017-01-02 03:57:23 +01:00
} else {
$shifttype_id = $request->input('shifttype_id');
2017-01-02 03:57:23 +01:00
}
} else {
$valid = false;
error(__('Please select a shift type.'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
// Name/Bezeichnung der Schicht, darf leer sein
$title = strip_request_item('title');
2021-11-27 11:34:20 +01:00
// Beschreibung der Schicht, darf leer sein
$description = strip_request_item_nl('description');
2021-11-27 11:34:20 +01:00
2017-01-02 15:43:36 +01:00
// Auswahl der sichtbaren Locations für die Schichten
if (
2023-10-15 19:25:55 +02:00
$request->has('lid')
&& preg_match('/^\d+$/', $request->input('lid'))
&& isset($location_array[$request->input('lid')])
2017-01-02 15:43:36 +01:00
) {
2023-10-15 19:25:55 +02:00
$lid = $request->input('lid');
2017-01-02 15:43:36 +01:00
} else {
$valid = false;
$lid = $locations->first()?->id ?? 0;
error(__('Please select a location.'));
2017-01-02 15:43:36 +01:00
}
2023-01-03 22:19:03 +01:00
if ($request->has('start') && $tmp = Carbon::createFromDateTime($request->input('start'))) {
2017-01-02 03:57:23 +01:00
$start = $tmp;
2012-12-10 09:49:23 +01:00
} else {
2017-01-02 03:57:23 +01:00
$valid = false;
error(__('Please select a start time.'));
2012-12-10 09:49:23 +01:00
}
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
if ($request->has('end') && $tmp = Carbon::createFromDateTime($request->input('end'))) {
2017-01-02 03:57:23 +01:00
$end = $tmp;
2012-12-10 09:49:23 +01:00
} else {
2017-01-02 03:57:23 +01:00
$valid = false;
error(__('Please select an end time.'));
2012-12-10 09:49:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
if ($start >= $end) {
2016-09-29 12:08:12 +02:00
$valid = false;
error(__('The shifts end has to be after its start.'));
2012-12-10 09:49:23 +01:00
}
2017-01-02 15:43:36 +01:00
if ($request->has('mode')) {
if ($request->input('mode') == 'single') {
2017-01-02 03:57:23 +01:00
$mode = 'single';
} elseif ($request->input('mode') == 'multi') {
if ($request->has('length') && preg_match('/^\d+$/', trim($request->input('length')))) {
2017-01-02 03:57:23 +01:00
$mode = 'multi';
$length = trim($request->input('length'));
2017-01-02 03:57:23 +01:00
} else {
$valid = false;
error(__('Please enter a shift duration in minutes.'));
2017-01-02 03:57:23 +01:00
}
} elseif ($request->input('mode') == 'variable') {
2017-01-02 15:43:36 +01:00
if (
$request->has('change_hours')
2017-12-25 23:12:52 +01:00
&& preg_match(
'/^(\d{1,2}(:\d{2})?(,|$))+$/',
2017-12-25 23:12:52 +01:00
trim(str_replace(' ', '', $request->input('change_hours')))
)
2017-01-02 15:43:36 +01:00
) {
2017-01-02 03:57:23 +01:00
$mode = 'variable';
2017-12-25 23:12:52 +01:00
$change_hours = array_map(
'trim',
explode(',', $request->input('change_hours'))
);
// Fehlende Minutenangaben ergänzen, 24 Uhr -> 00 Uhr
array_walk($change_hours, function (&$value) use ($valid) {
// Add minutes
if (!preg_match('/^(\d{1,2}):\d{2}$/', $value)) {
$value .= ':00';
}
// Add 0 before low hours
if (preg_match('/^\d:\d{2}$/', $value)) {
$value = '0' . $value;
}
// Fix 24:00
if ($value == '24:00') {
$value = '00:00';
}
});
// Ensure valid time in change hours
foreach ($change_hours as $change_hour) {
if (!preg_match('/^([0-1]?[0-9]|2[0-3]):[0-5][0-9]$/', $change_hour)) {
$valid = false;
error(sprintf(__('Please validate the change hour %s. It should be between 00:00 and 24:00.'), $change_hour));
}
}
$change_hours = array_unique($change_hours);
2017-01-02 03:57:23 +01:00
} else {
$valid = false;
error(__('Please split the shift-change hours by colons.'));
2017-01-02 03:57:23 +01:00
}
2020-05-13 18:26:32 +02:00
$shift_over_midnight = $request->has('shift_over_midnight')
&& $request->input('shift_over_midnight') != 'false';
2017-01-02 03:57:23 +01:00
}
} else {
$valid = false;
error(__('Please select a mode.'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if ($request->has('angelmode')) {
if ($request->input('angelmode') == 'shift_type') {
$angelmode = 'shift_type';
} elseif ($request->input('angelmode') == 'location') {
2017-01-02 03:57:23 +01:00
$angelmode = 'location';
} elseif ($request->input('angelmode') == 'manually') {
2017-01-02 03:57:23 +01:00
foreach ($types as $type) {
if (preg_match('/^\d+$/', trim($request->input('angeltype_count_' . $type->id, 0)))) {
$needed_angel_types[$type->id] = trim($request->input('angeltype_count_' . $type->id, 0));
2017-01-02 03:57:23 +01:00
} else {
$valid = false;
2022-11-09 00:02:30 +01:00
error(sprintf(__('Please check the needed angels for team %s.'), $type->name));
2017-01-02 03:57:23 +01:00
}
}
} else {
$valid = false;
error(__('Please select a mode for needed angels.'));
2017-01-02 03:57:23 +01:00
}
if (
$angelmode == 'manually' && array_sum($needed_angel_types) == 0
|| $angelmode == 'location' && !NeededAngelType::whereLocationId($lid)
->where('count', '>', '0')
->count()
|| $angelmode == 'shift_type' && !NeededAngelType::whereShiftTypeId($shifttype_id)
->where('count', '>', '0')
->count()
) {
$valid = false;
error(__('There are 0 angels needed. Please enter the amounts of needed angels.'));
}
2017-01-02 03:57:23 +01:00
} else {
$valid = false;
error(__('Please select needed angels.'));
2012-12-10 09:49:23 +01:00
}
2017-01-02 15:43:36 +01:00
// Beim Zurück-Knopf das Formular zeigen
if ($request->has('back')) {
2017-01-02 15:43:36 +01:00
$valid = false;
}
2017-01-02 15:43:36 +01:00
// Alle Eingaben in Ordnung
if ($valid) {
if ($angelmode == 'shift_type') {
$needed_angel_types = NeededAngelType::whereShiftTypeId($shifttype_id)
->pluck('count', 'angel_type_id')
->toArray() + $needed_angel_types;
} elseif ($angelmode == 'location') {
2023-10-15 19:25:55 +02:00
$needed_angel_types = NeededAngelType::whereLocationId($lid)
2023-01-22 18:43:09 +01:00
->pluck('count', 'angel_type_id')
->toArray() + $needed_angel_types;
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$shifts = [];
if ($mode == 'single') {
2017-01-02 03:57:23 +01:00
$shifts[] = [
2023-01-03 22:19:03 +01:00
'start' => $start,
'end' => $end,
2023-10-15 19:25:55 +02:00
'location_id' => $lid,
2023-01-03 22:19:03 +01:00
'title' => $title,
'shift_type_id' => $shifttype_id,
'description' => $description,
2017-01-02 15:43:36 +01:00
];
} elseif ($mode == 'multi') {
$shift_start = $start;
2017-01-02 15:43:36 +01:00
do {
2023-01-03 22:19:03 +01:00
$shift_end = (clone $shift_start)->addSeconds((int) $length * 60);
2017-01-02 15:43:36 +01:00
if ($shift_end > $end) {
$shift_end = $end;
}
if ($shift_start >= $shift_end) {
break;
}
$shifts[] = [
2023-01-03 22:19:03 +01:00
'start' => $shift_start,
'end' => $shift_end,
2023-10-15 19:25:55 +02:00
'location_id' => $lid,
2023-01-03 22:19:03 +01:00
'title' => $title,
'shift_type_id' => $shifttype_id,
'description' => $description,
2017-01-02 15:43:36 +01:00
];
$shift_start = $shift_end;
} while ($shift_end < $end);
} elseif ($mode == 'variable') {
2022-03-20 13:17:43 +01:00
// Alle Tage durchgehen
2023-01-03 22:19:03 +01:00
$end_day = Carbon::createFromDatetime($end->format('Y-m-d') . ' 00:00');
$day = Carbon::createFromDatetime($start->format('Y-m-d') . ' 00:00');
2022-03-20 13:17:43 +01:00
do {
// Alle Schichtwechselstunden durchgehen
2022-10-18 19:15:22 +02:00
for ($i = 0; $i < count($change_hours); $i++) {
2022-03-20 13:17:43 +01:00
$start_hour = $change_hours[$i];
2023-08-30 17:32:00 +02:00
if (isset($change_hours[$i + 1])) {
2022-03-20 13:17:43 +01:00
// Normales Intervall zwischen zwei Schichtwechselstunden
2022-10-18 19:15:22 +02:00
$end_hour = $change_hours[$i + 1];
} elseif ($shift_over_midnight && $day != $end_day) {
2023-01-03 22:19:03 +01:00
// Letzte Schichtwechselstunde: Wenn eine 24h Abdeckung gewünscht ist,
// hier die erste Schichtwechselstunde als Ende einsetzen
2022-03-20 13:17:43 +01:00
$end_hour = $change_hours[0];
} else {
// Letzte Schichtwechselstunde: Keine Schicht erstellen
break;
}
2023-01-03 22:19:03 +01:00
$interval_start = Carbon::createFromDatetime($day->format('Y-m-d') . ' ' . $start_hour);
2022-03-20 13:17:43 +01:00
if (str_replace(':', '', $end_hour) < str_replace(':', '', $start_hour)) {
// Endstunde kleiner Startstunde? Dann sind wir im nächsten Tag gelandet
2023-01-03 22:19:03 +01:00
$interval_end = Carbon::createFromDatetime(date('Y-m-d', $day->timestamp + 36 * 60 * 60) . ' ' . $end_hour);
2022-03-20 13:17:43 +01:00
} else {
// Endstunde ist noch im selben Tag
2023-01-03 22:19:03 +01:00
$interval_end = Carbon::createFromDatetime($day->format('Y-m-d', $day) . ' ' . $end_hour);
2022-03-20 13:17:43 +01:00
}
2017-01-02 15:43:36 +01:00
2022-03-20 13:17:43 +01:00
// Liegt das Intervall vor dem Startzeitpunkt -> Überspringen
if ($interval_end <= $start) {
continue;
}
2018-12-22 02:07:17 +01:00
2022-03-20 13:17:43 +01:00
// Liegt das Intervall nach dem Endzeitpunkt -> Überspringen
if ($interval_start >= $end) {
continue;
}
2018-12-22 02:07:17 +01:00
2022-03-20 13:17:43 +01:00
// Liegt nur der Schichtstart vor dem Startzeitpunkt -> Startzeitpunkt übernehmen
if ($interval_start < $start) {
$interval_start = $start;
}
2018-12-22 02:07:17 +01:00
2022-03-20 13:17:43 +01:00
// Liegt nur das Schichtende nach dem Endzeitpunkt -> Endzeitpunkt übernehmen
if ($interval_end > $end) {
$interval_end = $end;
}
2017-01-02 15:43:36 +01:00
2022-03-20 13:17:43 +01:00
// Intervall für Schicht hinzufügen
$shifts[] = [
2023-01-03 22:19:03 +01:00
'start' => $interval_start,
'end' => $interval_end,
2023-10-15 19:25:55 +02:00
'location_id' => $lid,
2023-01-03 22:19:03 +01:00
'title' => $title,
'shift_type_id' => $shifttype_id,
'description' => $description,
];
}
2017-01-02 15:43:36 +01:00
2023-01-03 22:19:03 +01:00
$day = Carbon::createFromDatetime(date('Y-m-d', $day->timestamp + 36 * 60 * 60) . ' 00:00');
2022-10-18 19:15:22 +02:00
} while ($day <= $end_day);
2022-03-20 13:17:43 +01:00
usort($shifts, function ($a, $b) {
return $a['start'] < $b['start'] ? -1 : 1;
});
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$shifts_table = [];
foreach ($shifts as $shift) {
$shiftType = $shifttypes_source->find($shift['shift_type_id']);
$location = $locations->find($shift['location_id']);
/** @var Carbon $start */
$start = $shift['start'];
/** @var Carbon $end */
$end = $shift['end'];
2017-01-02 15:43:36 +01:00
$shifts_table_entry = [
'timeslot' =>
2022-12-02 23:03:23 +01:00
icon('clock-history') . ' '
2023-11-23 14:30:46 +01:00
. $start->format(__('general.datetime'))
2017-01-02 15:43:36 +01:00
. ' - '
2023-11-23 14:30:46 +01:00
. '<span title="' . $end->format(__('general.date')) . '">'
. $end->format(__('H:i'))
. '</span>'
. ', ' . round($end->copy()->diffInMinutes($start) / 60, 2) . 'h'
. '<br>'
. location_name_render($location),
'title' =>
htmlspecialchars($shiftType->name)
2023-12-04 23:33:07 +01:00
. ($shift['title'] ? '<br />' . htmlspecialchars($shift['title']) : ''),
'needed_angels' => '',
2017-01-02 15:43:36 +01:00
];
foreach ($types as $type) {
2022-11-09 00:02:30 +01:00
if (isset($needed_angel_types[$type->id]) && $needed_angel_types[$type->id] > 0) {
2017-12-25 23:12:52 +01:00
$shifts_table_entry['needed_angels'] .= '<b>' . AngelType_name_render($type) . ':</b> '
2022-11-09 00:02:30 +01:00
. $needed_angel_types[$type->id] . '<br />';
2017-01-02 15:43:36 +01:00
}
}
$shifts_table[] = $shifts_table_entry;
}
// Fürs Anlegen zwischenspeichern:
2017-08-30 19:57:01 +02:00
$session->set('admin_shifts_shifts', $shifts);
$session->set('admin_shifts_types', $needed_angel_types);
2017-01-02 15:43:36 +01:00
$previousEntries = [];
2017-01-02 15:43:36 +01:00
foreach ($needed_angel_types as $type_id => $count) {
$previousEntries['angeltype_count_' . $type_id] = $count;
2017-01-02 15:43:36 +01:00
}
// Number of Shifts that will be created (if over 100 its danger-red)
$shiftsCount = count($shifts_table);
$shiftsCreationHint = __('Number of shifts: %s', [$shiftsCount]);
if ($shiftsCount >= 100) {
$shiftsCreationHint = '<span class="text-danger">' . $shiftsCreationHint . '</span>';
}
// Save as previous state to be able to reuse it
$previousEntries += [
'shifttype_id' => $shifttype_id,
'description' => $description,
'title' => $title,
'lid' => $lid,
'start' => $request->input('start'),
'end' => $request->input('end'),
'mode' => $mode,
'length' => $length,
'change_hours' => implode(', ', $change_hours),
'angelmode' => $angelmode,
'shift_over_midnight' => $shift_over_midnight ? 'true' : 'false',
];
$session->set('admin_shifts_previous', $previousEntries);
$hidden_types = '';
foreach ($previousEntries as $name => $value) {
$hidden_types .= form_hidden($name, $value);
}
2023-10-02 16:15:25 +02:00
return page_with_title(__('form.preview'), [
2017-01-02 15:43:36 +01:00
form([
$hidden_types,
form_submit('back', icon('chevron-left') . __('general.back')),
$shiftsCreationHint,
2017-01-02 15:43:36 +01:00
table([
'timeslot' => __('Time and location'),
'title' => __('Type and title'),
'needed_angels' => __('Needed angels'),
2017-01-02 15:43:36 +01:00
], $shifts_table),
2023-10-01 22:33:58 +02:00
form_submit('submit', icon('save') . __('form.save')),
]),
2017-01-02 15:43:36 +01:00
]);
2017-01-02 03:57:23 +01:00
}
} elseif ($request->hasPostData('submit')) {
if (
2017-08-30 19:57:01 +02:00
!is_array($session->get('admin_shifts_shifts'))
|| !is_array($session->get('admin_shifts_types'))
) {
2023-11-13 16:56:52 +01:00
throw_redirect(url('/admin-shifts'));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$transactionId = Str::uuid();
2017-08-30 19:57:01 +02:00
foreach ($session->get('admin_shifts_shifts', []) as $shift) {
2023-01-03 22:19:03 +01:00
$shift = new Shift($shift);
$shift->url = '';
$shift->transaction_id = $transactionId;
$shift->createdBy()->associate(auth()->user());
$shift->save();
2017-01-02 15:43:36 +01:00
$needed_angel_types_info = [];
2017-08-30 19:57:01 +02:00
foreach ($session->get('admin_shifts_types', []) as $type_id => $count) {
2022-11-09 00:02:30 +01:00
$angel_type_source = AngelType::find($type_id);
2023-01-22 18:43:09 +01:00
if (!empty($angel_type_source) && $count > 0) {
$neededAngelType = new NeededAngelType();
$neededAngelType->shift()->associate($shift);
$neededAngelType->angelType()->associate($angel_type_source);
$neededAngelType->count = $count;
$neededAngelType->save();
$needed_angel_types_info[] = $angel_type_source->name . ': ' . $count;
2017-01-02 03:57:23 +01:00
}
}
engelsystem_log(
'Shift created: ' . $shifttypes[$shift->shift_type_id]
. ' (' . $shift->id . ')'
2023-12-27 12:06:35 +01:00
. ' with title ' . $shift->title
. ' and description ' . $shift->description
2023-12-27 12:06:35 +01:00
. ' from ' . $shift->start->format('Y-m-d H:i')
. ' to ' . $shift->end->format('Y-m-d H:i')
. ' in ' . $shift->location->name
. ' with angel types: ' . join(', ', $needed_angel_types_info)
2023-12-27 12:06:35 +01:00
. ', transaction: ' . $transactionId
);
2012-12-26 14:02:27 +01:00
}
2017-01-02 15:43:36 +01:00
success(__('Shifts created.'));
2023-11-13 16:56:52 +01:00
throw_redirect(url('/admin-shifts'));
2017-01-02 03:57:23 +01:00
} else {
2017-08-30 19:57:01 +02:00
$session->remove('admin_shifts_shifts');
$session->remove('admin_shifts_types');
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2023-10-15 19:25:55 +02:00
$lid = null;
if ($request->has('lid')) {
$lid = $request->input('lid');
2017-01-02 03:57:23 +01:00
}
2017-01-03 14:12:17 +01:00
$angel_types = '';
2017-01-02 03:57:23 +01:00
foreach ($types as $type) {
$angel_types .= '<div class="col-sm-6 col-md-8 col-lg-6 col-xl-4 col-xxl-3">'
. form_spinner(
2022-12-05 02:03:36 +01:00
'angeltype_count_' . $type->id,
2023-12-04 23:33:07 +01:00
htmlspecialchars($type->name),
$needed_angel_types[$type->id],
[
'radio-name' => 'angelmode',
'radio-value' => 'manually',
]
)
2017-01-02 15:43:36 +01:00
. '</div>';
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$link = button(url('/user-shifts'), icon('chevron-left'), 'btn-sm', '', __('general.back'));
$reset = '';
if ($session->has('admin_shifts_previous')) {
$reset = form_submit(
'back',
icon('arrow-counterclockwise'),
'',
false,
'link',
__('Reset to previous state')
);
foreach ($session->get('admin_shifts_previous', []) as $name => $value) {
$reset .= form_hidden($name, $value);
}
}
return page_with_title(
$link . ' ' . admin_shifts_title() . ' ' . sprintf(
'<a href="%s">%s</a>',
2023-10-22 18:37:29 +02:00
url('/admin/shifts/history'),
icon('clock-history')
) . form([$reset], '', 'display:inline'),
2022-10-18 19:15:22 +02:00
[
$no_locations ? warning(__('admin_shifts.no_locations')) : '',
$no_shifttypes ? warning(__('admin_shifts.no_shifttypes')) : '',
$no_angeltypes ? warning(__('admin_shifts.no_angeltypes')) : '',
msg(),
form([
div('row', [
div('col-md-6 col-xl-5', [
form_select('shifttype_id', __('Shifttype'), $shifttypes, $shifttype_id),
2023-10-01 22:33:58 +02:00
form_text('title', __('title.title'), $title),
2023-10-15 19:25:55 +02:00
form_select('lid', __('Location'), $location_array, $lid),
]),
div('col-md-6 col-xl-7', [
form_textarea('description', __('Additional description'), $description),
__('This description is for single shifts, otherwise please use the description in shift type.'),
]),
2021-11-27 11:34:20 +01:00
]),
div('row', [
div('col-md-6 col-xl-5', [
div('row', [
div('col-lg-6', [
form_datetime(
'start',
2023-10-22 18:37:29 +02:00
__('shifts.start'),
$request->has('start')
? Carbon::createFromDatetime($request->input('start'))
: $start
),
]),
div('col-lg-6', [
form_datetime(
'end',
2023-10-22 18:37:29 +02:00
__('shifts.end'),
$request->has('end')
? Carbon::createFromDatetime($request->input('end'))
: $end
),
]),
]),
form_info(__('Mode')),
form_radio('mode', __('Create one shift'), $mode == 'single', 'single'),
form_radio('mode', __('Create multiple shifts'), $mode == 'multi', 'multi'),
form_text(
'length',
2024-02-17 16:32:18 +01:00
__('Length (in minutes)'),
$request->has('length')
? $request->input('length')
: '120',
false,
null,
null,
'',
[
'radio-name' => 'mode',
'radio-value' => 'multi',
]
),
form_radio(
'mode',
__('Create multiple shifts with variable length'),
$mode == 'variable',
'variable'
),
form_text(
'change_hours',
__('Shift change hours'),
$request->has('change_hours')
? ($change_hours ? implode(', ', $change_hours) : $request->input('change_hours'))
: '00, 04, 08, 10, 12, 14, 16, 18, 20, 22',
false,
null,
null,
'',
[
'radio-name' => 'mode',
'radio-value' => 'variable',
]
),
form_checkbox(
'shift_over_midnight',
__('Create a shift over midnight.'),
$shift_over_midnight
),
]),
div('col-md-6 col-xl-7', [
form_info(__('Needed angels')),
form_radio(
'angelmode',
__('Copy needed angels from shift type settings'),
$angelmode == 'shift_type',
'shift_type'
),
form_radio(
'angelmode',
__('Copy needed angels from location settings'),
$angelmode == 'location',
'location'
),
form_radio(
'angelmode',
__('The following angels are needed'),
$angelmode == 'manually',
'manually'
),
div('row', [
$angel_types,
]),
]),
]),
form_submit('preview', icon('eye') . __('form.preview'), 'btn-info'),
]),
2022-10-18 19:15:22 +02:00
]
);
2011-09-06 20:45:06 +02:00
}