2011-09-06 20:45:06 +02:00
|
|
|
<?php
|
2014-12-07 17:34:29 +01:00
|
|
|
|
2017-01-21 13:58:53 +01:00
|
|
|
use Engelsystem\Database\DB;
|
|
|
|
|
2017-01-03 03:22:48 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-01-02 03:57:23 +01:00
|
|
|
function admin_shifts_title()
|
|
|
|
{
|
2018-08-29 21:55:32 +02:00
|
|
|
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;
|
2017-07-18 21:38:53 +02:00
|
|
|
$request = request();
|
2017-08-30 19:57:01 +02:00
|
|
|
$session = session();
|
2017-01-03 14:12:17 +01:00
|
|
|
$start = parse_date('Y-m-d H:i', date('Y-m-d') . ' 00:00');
|
2017-01-02 03:57:23 +01:00
|
|
|
$end = $start;
|
|
|
|
$mode = 'single';
|
|
|
|
$angelmode = 'manually';
|
|
|
|
$length = '';
|
|
|
|
$change_hours = [];
|
2017-01-03 14:12:17 +01:00
|
|
|
$title = '';
|
2017-01-02 03:57:23 +01:00
|
|
|
$shifttype_id = null;
|
2019-08-17 18:46:03 +02:00
|
|
|
// 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
|
|
|
|
$rooms = Rooms();
|
2017-01-02 03:57:23 +01:00
|
|
|
$room_array = [];
|
|
|
|
foreach ($rooms as $room) {
|
|
|
|
$room_array[$room['RID']] = $room['Name'];
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
// Engeltypen laden
|
2017-01-21 13:58:53 +01:00
|
|
|
$types = DB::select('SELECT * FROM `AngelTypes` ORDER BY `name`');
|
2017-01-02 03:57:23 +01:00
|
|
|
$needed_angel_types = [];
|
|
|
|
foreach ($types as $type) {
|
|
|
|
$needed_angel_types[$type['id']] = 0;
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
// Load shift types
|
|
|
|
$shifttypes_source = ShiftTypes();
|
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
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('preview') || $request->has('back')) {
|
|
|
|
if ($request->has('shifttype_id')) {
|
|
|
|
$shifttype = ShiftType($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;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please select a shift type.'));
|
2017-01-02 03:57:23 +01:00
|
|
|
} else {
|
2017-07-18 21:38:53 +02:00
|
|
|
$shifttype_id = $request->input('shifttype_id');
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
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');
|
|
|
|
|
|
|
|
// Auswahl der sichtbaren Locations für die Schichten
|
|
|
|
if (
|
2017-07-18 21:38:53 +02:00
|
|
|
$request->has('rid')
|
|
|
|
&& preg_match('/^\d+$/', $request->input('rid'))
|
|
|
|
&& isset($room_array[$request->input('rid')])
|
2017-01-02 15:43:36 +01:00
|
|
|
) {
|
2017-07-18 21:38:53 +02:00
|
|
|
$rid = $request->input('rid');
|
2017-01-02 15:43:36 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
|
|
|
$rid = $rooms[0]['RID'];
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please select a location.'));
|
2017-01-02 15:43:36 +01:00
|
|
|
}
|
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('start') && $tmp = parse_date('Y-m-d H:i', $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;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please select a start time.'));
|
2012-12-10 09:49:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('end') && $tmp = parse_date('Y-m-d H:i', $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;
|
2018-08-29 21:55:32 +02:00
|
|
|
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;
|
2018-08-29 21:55:32 +02:00
|
|
|
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
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('mode')) {
|
|
|
|
if ($request->input('mode') == 'single') {
|
2017-01-02 03:57:23 +01:00
|
|
|
$mode = 'single';
|
2017-07-18 21:38:53 +02:00
|
|
|
} 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';
|
2017-07-18 21:38:53 +02:00
|
|
|
$length = trim($request->input('length'));
|
2017-01-02 03:57:23 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please enter a shift duration in minutes.'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-07-18 21:38:53 +02:00
|
|
|
} elseif ($request->input('mode') == 'variable') {
|
2017-01-02 15:43:36 +01:00
|
|
|
if (
|
2017-07-18 21:38:53 +02:00
|
|
|
$request->has('change_hours')
|
2017-12-25 23:12:52 +01:00
|
|
|
&& preg_match(
|
2018-12-26 19:49:01 +01:00
|
|
|
'/^(\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'))
|
|
|
|
);
|
2017-01-02 03:57:23 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
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')
|
2019-08-19 22:04:52 +02:00
|
|
|
&& $request->input('shift_over_midnight') != 'false';
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please select a mode.'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('angelmode')) {
|
|
|
|
if ($request->input('angelmode') == 'location') {
|
2017-01-02 03:57:23 +01:00
|
|
|
$angelmode = 'location';
|
2017-07-18 21:38:53 +02:00
|
|
|
} elseif ($request->input('angelmode') == 'manually') {
|
2017-01-02 03:57:23 +01:00
|
|
|
$angelmode = 'manually';
|
|
|
|
foreach ($types as $type) {
|
2017-08-29 16:21:25 +02:00
|
|
|
if (preg_match('/^\d+$/', trim($request->input('type_' . $type['id'], 0)))) {
|
|
|
|
$needed_angel_types[$type['id']] = trim($request->input('type_' . $type['id'], 0));
|
2017-01-02 03:57:23 +01:00
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(sprintf(__('Please check the needed angels for team %s.'), $type['name']));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2017-08-29 16:21:25 +02:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
if (array_sum($needed_angel_types) == 0) {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('There are 0 angels needed. Please enter the amounts of needed angels.'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
error(__('Please select a mode for needed angels.'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$valid = false;
|
2018-08-29 21:55:32 +02:00
|
|
|
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
|
2017-07-18 21:38:53 +02:00
|
|
|
if ($request->has('back')) {
|
2017-01-02 15:43:36 +01:00
|
|
|
$valid = false;
|
2016-09-29 10:53:17 +02:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
// Alle Eingaben in Ordnung
|
|
|
|
if ($valid) {
|
|
|
|
if ($angelmode == 'location') {
|
|
|
|
$needed_angel_types = [];
|
2017-01-21 13:58:53 +01:00
|
|
|
$needed_angel_types_location = DB::select('
|
|
|
|
SELECT `angel_type_id`, `count`
|
|
|
|
FROM `NeededAngelTypes`
|
|
|
|
WHERE `room_id`=?
|
|
|
|
',
|
|
|
|
[$rid]
|
|
|
|
);
|
2017-01-02 15:43:36 +01:00
|
|
|
foreach ($needed_angel_types_location as $type) {
|
|
|
|
$needed_angel_types[$type['angel_type_id']] = $type['count'];
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2018-12-26 19:49:01 +01:00
|
|
|
|
2017-01-02 15:43:36 +01:00
|
|
|
$shifts = [];
|
|
|
|
if ($mode == 'single') {
|
2017-01-02 03:57:23 +01:00
|
|
|
$shifts[] = [
|
2018-12-26 19:39:40 +01:00
|
|
|
'start' => $start,
|
|
|
|
'end' => $end,
|
|
|
|
'RID' => $rid,
|
|
|
|
'title' => $title,
|
2017-01-02 15:43:36 +01:00
|
|
|
'shifttype_id' => $shifttype_id
|
|
|
|
];
|
|
|
|
} elseif ($mode == 'multi') {
|
2017-01-03 03:22:48 +01:00
|
|
|
$shift_start = (int)$start;
|
2017-01-02 15:43:36 +01:00
|
|
|
do {
|
2017-01-03 03:22:48 +01:00
|
|
|
$shift_end = $shift_start + (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[] = [
|
2018-12-26 19:39:40 +01:00
|
|
|
'start' => $shift_start,
|
|
|
|
'end' => $shift_end,
|
|
|
|
'RID' => $rid,
|
|
|
|
'title' => $title,
|
2017-01-02 15:43:36 +01:00
|
|
|
'shifttype_id' => $shifttype_id
|
|
|
|
];
|
|
|
|
|
|
|
|
$shift_start = $shift_end;
|
|
|
|
} while ($shift_end < $end);
|
|
|
|
} elseif ($mode == 'variable') {
|
2019-08-15 21:14:54 +02:00
|
|
|
// Fehlende Minutenangaben ergänzen
|
2018-12-26 19:49:01 +01:00
|
|
|
array_walk($change_hours, function (&$value) {
|
|
|
|
if (!preg_match('/^\d{1,2}:\d{2}$/', $value)) {
|
|
|
|
$value .= ':00';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-08-17 18:46:03 +02:00
|
|
|
// Chronologisch absteigend sortieren (WHY???)
|
2018-12-26 19:49:01 +01:00
|
|
|
usort($change_hours, function ($a, $b) {
|
|
|
|
return str_replace(':', '', $a) > str_replace(':', '', $b) ? -1 : 1;
|
|
|
|
});
|
|
|
|
|
2019-08-15 21:14:54 +02:00
|
|
|
// Start-Tag
|
2017-01-03 14:12:17 +01:00
|
|
|
$day = parse_date('Y-m-d H:i', date('Y-m-d', $start) . ' 00:00');
|
2019-08-15 21:14:54 +02:00
|
|
|
|
2017-01-02 15:43:36 +01:00
|
|
|
$change_index = 0;
|
|
|
|
// Ersten/nächsten passenden Schichtwechsel suchen
|
2018-12-22 02:07:17 +01:00
|
|
|
foreach ($change_hours as $i => $change_time) {
|
2019-08-15 21:14:54 +02:00
|
|
|
list($change_hour, $change_minute) = explode(':', $change_time);
|
2018-12-22 02:07:17 +01:00
|
|
|
|
2018-12-26 19:49:01 +01:00
|
|
|
$shift_end = $day + $change_hour * 60 * 60 + $change_minute * 60;
|
|
|
|
if ($start < $shift_end) {
|
2017-01-02 15:43:36 +01:00
|
|
|
$change_index = $i;
|
2018-12-26 19:49:01 +01:00
|
|
|
} elseif ($start == $shift_end) {
|
2017-01-02 15:43:36 +01:00
|
|
|
// Start trifft Schichtwechsel
|
|
|
|
$change_index = ($i + count($change_hours) - 1) % count($change_hours);
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
$shift_start = $start;
|
|
|
|
do {
|
2017-01-03 14:12:17 +01:00
|
|
|
$day = parse_date('Y-m-d H:i', date('Y-m-d', $shift_start) . ' 00:00');
|
2018-12-22 02:07:17 +01:00
|
|
|
|
2019-08-15 21:14:54 +02:00
|
|
|
list($change_hour, $change_minute) = explode(':', $change_hours[$change_index]);
|
2018-12-22 02:07:17 +01:00
|
|
|
|
|
|
|
$shift_end = $day + $change_hour * 60 * 60 + $change_minute * 60;
|
|
|
|
|
2017-01-02 15:43:36 +01:00
|
|
|
if ($shift_end > $end) {
|
|
|
|
$shift_end = $end;
|
|
|
|
}
|
|
|
|
if ($shift_start >= $shift_end) {
|
|
|
|
$shift_end += 24 * 60 * 60;
|
2019-08-15 21:14:54 +02:00
|
|
|
if ($shift_end > $end) {
|
|
|
|
$shift_end = $end;
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
}
|
|
|
|
|
2019-08-17 18:46:03 +02:00
|
|
|
if($shift_over_midnight || $day == parse_date('Y-m-d H:i', date('Y-m-d', $shift_end) . ' 00:00')) {
|
|
|
|
$shifts[] = [
|
|
|
|
'start' => $shift_start,
|
|
|
|
'end' => $shift_end,
|
|
|
|
'RID' => $rid,
|
|
|
|
'title' => $title,
|
|
|
|
'shifttype_id' => $shifttype_id
|
|
|
|
];
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
$shift_start = $shift_end;
|
2019-08-17 18:46:03 +02:00
|
|
|
$change_index--;
|
|
|
|
if($change_index < 0) {
|
|
|
|
$change_index = count($change_hours) - 1;
|
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
} while ($shift_end < $end);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
$shifts_table = [];
|
|
|
|
foreach ($shifts as $shift) {
|
|
|
|
$shifts_table_entry = [
|
2018-12-26 19:39:40 +01:00
|
|
|
'timeslot' =>
|
2017-01-02 15:43:36 +01:00
|
|
|
'<span class="glyphicon glyphicon-time"></span> '
|
2017-01-03 14:12:17 +01:00
|
|
|
. date('Y-m-d H:i', $shift['start'])
|
2017-01-02 15:43:36 +01:00
|
|
|
. ' - '
|
2017-01-03 14:12:17 +01:00
|
|
|
. date('H:i', $shift['end'])
|
2017-01-02 15:43:36 +01:00
|
|
|
. '<br />'
|
|
|
|
. Room_name_render(Room($shift['RID'])),
|
2018-12-26 19:39:40 +01:00
|
|
|
'title' =>
|
2017-01-02 15:43:36 +01:00
|
|
|
ShiftType_name_render(ShiftType($shifttype_id))
|
|
|
|
. ($shift['title'] ? '<br />' . $shift['title'] : ''),
|
|
|
|
'needed_angels' => ''
|
|
|
|
];
|
|
|
|
foreach ($types as $type) {
|
|
|
|
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> '
|
|
|
|
. $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
|
|
|
|
2017-01-03 14:12:17 +01:00
|
|
|
$hidden_types = '';
|
2017-01-02 15:43:36 +01:00
|
|
|
foreach ($needed_angel_types as $type_id => $count) {
|
|
|
|
$hidden_types .= form_hidden('type_' . $type_id, $count);
|
|
|
|
}
|
2018-08-29 21:55:32 +02:00
|
|
|
return page_with_title(__('Preview'), [
|
2017-01-02 15:43:36 +01:00
|
|
|
form([
|
|
|
|
$hidden_types,
|
|
|
|
form_hidden('shifttype_id', $shifttype_id),
|
|
|
|
form_hidden('title', $title),
|
|
|
|
form_hidden('rid', $rid),
|
2017-01-03 14:12:17 +01:00
|
|
|
form_hidden('start', date('Y-m-d H:i', $start)),
|
|
|
|
form_hidden('end', date('Y-m-d H:i', $end)),
|
2017-01-02 15:43:36 +01:00
|
|
|
form_hidden('mode', $mode),
|
|
|
|
form_hidden('length', $length),
|
|
|
|
form_hidden('change_hours', implode(', ', $change_hours)),
|
|
|
|
form_hidden('angelmode', $angelmode),
|
2019-08-19 22:04:52 +02:00
|
|
|
form_hidden('shift_over_midnight', $shift_over_midnight ? 'true' : 'false'),
|
|
|
|
form_submit('back', glyph('menu-left') . __('back')),
|
2017-01-02 15:43:36 +01:00
|
|
|
table([
|
2018-12-26 19:39:40 +01:00
|
|
|
'timeslot' => __('Time and location'),
|
|
|
|
'title' => __('Type and title'),
|
2018-08-29 21:55:32 +02:00
|
|
|
'needed_angels' => __('Needed angels')
|
2017-01-02 15:43:36 +01:00
|
|
|
], $shifts_table),
|
2019-08-19 22:04:52 +02:00
|
|
|
form_submit('submit', glyph('floppy-disk') . __('Save'))
|
2017-01-02 15:43:36 +01:00
|
|
|
])
|
|
|
|
]);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2018-11-20 16:02:03 +01:00
|
|
|
} elseif ($request->hasPostData('submit')) {
|
2017-01-21 13:58:53 +01:00
|
|
|
if (
|
2017-08-30 19:57:01 +02:00
|
|
|
!is_array($session->get('admin_shifts_shifts'))
|
|
|
|
|| !is_array($session->get('admin_shifts_types'))
|
2017-01-21 13:58:53 +01:00
|
|
|
) {
|
2019-09-08 02:25:49 +02:00
|
|
|
throw_redirect(page_link_to('admin_shifts'));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-08-30 19:57:01 +02:00
|
|
|
foreach ($session->get('admin_shifts_shifts', []) as $shift) {
|
2017-01-02 03:57:23 +01:00
|
|
|
$shift['URL'] = null;
|
|
|
|
$shift_id = Shift_create($shift);
|
2017-01-02 15:43:36 +01:00
|
|
|
|
|
|
|
engelsystem_log(
|
2017-01-03 14:12:17 +01:00
|
|
|
'Shift created: ' . $shifttypes[$shift['shifttype_id']]
|
|
|
|
. ' with title ' . $shift['title']
|
|
|
|
. ' from ' . date('Y-m-d H:i', $shift['start'])
|
|
|
|
. ' to ' . date('Y-m-d H:i', $shift['end'])
|
2017-01-02 15:43:36 +01:00
|
|
|
);
|
2017-01-03 03:22:48 +01:00
|
|
|
|
2017-11-19 13:55:18 +01:00
|
|
|
$needed_angel_types_info = [];
|
2017-08-30 19:57:01 +02:00
|
|
|
foreach ($session->get('admin_shifts_types', []) as $type_id => $count) {
|
2017-07-28 20:11:09 +02:00
|
|
|
$angel_type_source = DB::selectOne('
|
2020-05-13 18:26:32 +02:00
|
|
|
SELECT *
|
|
|
|
FROM `AngelTypes`
|
|
|
|
WHERE `id` = ?
|
|
|
|
LIMIT 1', [$type_id]);
|
2017-12-25 23:12:52 +01:00
|
|
|
|
2017-01-21 13:58:53 +01:00
|
|
|
if (!empty($angel_type_source)) {
|
|
|
|
DB::insert('
|
|
|
|
INSERT INTO `NeededAngelTypes` (`shift_id`, `angel_type_id`, `count`)
|
|
|
|
VALUES (?, ?, ?)
|
2020-05-13 18:26:32 +02:00
|
|
|
',
|
2017-01-21 13:58:53 +01:00
|
|
|
[
|
|
|
|
$shift_id,
|
|
|
|
$type_id,
|
|
|
|
$count
|
|
|
|
]
|
|
|
|
);
|
2017-12-25 23:12:52 +01:00
|
|
|
|
|
|
|
if ($count > 0) {
|
2017-12-12 20:04:36 +01:00
|
|
|
$needed_angel_types_info[] = $angel_type_source['name'] . ': ' . $count;
|
|
|
|
}
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2017-11-19 13:55:18 +01:00
|
|
|
engelsystem_log('Shift needs following angel types: ' . join(', ', $needed_angel_types_info));
|
2012-12-26 14:02:27 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-03 14:12:17 +01:00
|
|
|
success('Schichten angelegt.');
|
2019-09-08 02:25:49 +02:00
|
|
|
throw_redirect(page_link_to('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
|
|
|
|
2017-07-18 21:38:53 +02:00
|
|
|
$rid = null;
|
|
|
|
if ($request->has('rid')) {
|
|
|
|
$rid = $request->input('rid');
|
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) {
|
2017-01-02 15:43:36 +01:00
|
|
|
$angel_types .= '<div class="col-md-4">' . form_spinner(
|
|
|
|
'type_' . $type['id'],
|
|
|
|
$type['name'],
|
|
|
|
$needed_angel_types[$type['id']]
|
|
|
|
)
|
|
|
|
. '</div>';
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2017-01-02 15:43:36 +01:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
return page_with_title(admin_shifts_title(), [
|
2017-01-02 15:43:36 +01:00
|
|
|
msg(),
|
|
|
|
form([
|
2018-08-29 21:55:32 +02:00
|
|
|
form_select('shifttype_id', __('Shifttype'), $shifttypes, $shifttype_id),
|
|
|
|
form_text('title', __('Title'), $title),
|
|
|
|
form_select('rid', __('Room'), $room_array, $rid),
|
2017-01-02 15:43:36 +01:00
|
|
|
div('row', [
|
|
|
|
div('col-md-6', [
|
2018-08-29 21:55:32 +02:00
|
|
|
form_text('start', __('Start'), date('Y-m-d H:i', $start)),
|
|
|
|
form_text('end', __('End'), date('Y-m-d H:i', $end)),
|
|
|
|
form_info(__('Mode'), ''),
|
|
|
|
form_radio('mode', __('Create one shift'), $mode == 'single', 'single'),
|
|
|
|
form_radio('mode', __('Create multiple shifts'), $mode == 'multi', 'multi'),
|
2017-12-25 23:12:52 +01:00
|
|
|
form_text(
|
|
|
|
'length',
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Length'),
|
2017-12-25 23:12:52 +01:00
|
|
|
$request->has('length')
|
|
|
|
? $request->input('length')
|
|
|
|
: '120'
|
|
|
|
),
|
2017-01-02 15:43:36 +01:00
|
|
|
form_radio(
|
|
|
|
'mode',
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Create multiple shifts with variable length'),
|
2017-01-02 15:43:36 +01:00
|
|
|
$mode == 'variable',
|
|
|
|
'variable'
|
|
|
|
),
|
|
|
|
form_text(
|
|
|
|
'change_hours',
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Shift change hours'),
|
2017-12-25 23:12:52 +01:00
|
|
|
$request->has('change_hours')
|
2019-08-19 22:04:52 +02:00
|
|
|
? $request->input('change_hours')
|
2017-12-25 23:12:52 +01:00
|
|
|
: '00, 04, 08, 10, 12, 14, 16, 18, 20, 22'
|
2019-08-17 18:46:03 +02:00
|
|
|
),
|
|
|
|
form_checkbox(
|
2020-05-13 18:26:32 +02:00
|
|
|
'shift_over_midnight',
|
|
|
|
__('Create a shift over midnight.'),
|
2019-08-17 18:46:03 +02:00
|
|
|
$shift_over_midnight
|
2017-01-02 15:43:36 +01:00
|
|
|
)
|
|
|
|
]),
|
|
|
|
div('col-md-6', [
|
2018-08-29 21:55:32 +02:00
|
|
|
form_info(__('Needed angels'), ''),
|
2017-01-02 15:43:36 +01:00
|
|
|
form_radio(
|
|
|
|
'angelmode',
|
2018-08-29 21:55:32 +02:00
|
|
|
__('Take needed angels from room settings'),
|
2017-01-02 15:43:36 +01:00
|
|
|
$angelmode == 'location',
|
|
|
|
'location'
|
|
|
|
),
|
2017-12-25 23:12:52 +01:00
|
|
|
form_radio(
|
|
|
|
'angelmode',
|
2018-08-29 21:55:32 +02:00
|
|
|
__('The following angels are needed'),
|
2017-12-25 23:12:52 +01:00
|
|
|
$angelmode == 'manually',
|
|
|
|
'manually'
|
|
|
|
),
|
2017-01-02 15:43:36 +01:00
|
|
|
div('row', [
|
|
|
|
$angel_types
|
|
|
|
])
|
|
|
|
])
|
|
|
|
]),
|
2019-08-19 22:04:52 +02:00
|
|
|
form_submit('preview', glyph('search') . __('Preview'))
|
2017-01-02 15:43:36 +01:00
|
|
|
])
|
|
|
|
]);
|
2011-09-06 20:45:06 +02:00
|
|
|
}
|