#5 preview for shifts to be created
This commit is contained in:
parent
4303b05d08
commit
024c5ff2e2
|
@ -76,7 +76,7 @@ function admin_shifts() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($_REQUEST['mode'] == 'variable') {
|
elseif ($_REQUEST['mode'] == 'variable') {
|
||||||
if (isset ($_REQUEST['change_hours']) && preg_match("/^([0-9]+(,|$))/", trim(str_replace(" ", "", $_REQUEST['change_hours'])))) {
|
if (isset ($_REQUEST['change_hours']) && preg_match("/^([0-9]{2}(,|$))/", trim(str_replace(" ", "", $_REQUEST['change_hours'])))) {
|
||||||
$mode = 'variable';
|
$mode = 'variable';
|
||||||
$change_hours = explode(",", $_REQUEST['change_hours']);
|
$change_hours = explode(",", $_REQUEST['change_hours']);
|
||||||
} else {
|
} else {
|
||||||
|
@ -107,6 +107,84 @@ function admin_shifts() {
|
||||||
$msg .= error("Bitte Wähle einen Modus für die benötigten Engel.");
|
$msg .= error("Bitte Wähle einen Modus für die benötigten Engel.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Alle Eingaben in Ordnung
|
||||||
|
if ($ok) {
|
||||||
|
$shifts = array ();
|
||||||
|
if ($mode == 'single') {
|
||||||
|
$shifts[] = array (
|
||||||
|
'start' => $start,
|
||||||
|
'end' => $end,
|
||||||
|
'RID' => $rid,
|
||||||
|
'name' => $name
|
||||||
|
);
|
||||||
|
}
|
||||||
|
elseif ($mode == 'multi') {
|
||||||
|
$shift_start = $start;
|
||||||
|
do {
|
||||||
|
$shift_end = $shift_start + $length * 60;
|
||||||
|
|
||||||
|
if ($shift_end > $end)
|
||||||
|
$shift_end = $end;
|
||||||
|
if ($shift_start >= $shift_end)
|
||||||
|
break;
|
||||||
|
|
||||||
|
$shifts[] = array (
|
||||||
|
'start' => $shift_start,
|
||||||
|
'end' => $shift_end,
|
||||||
|
'RID' => $rid,
|
||||||
|
'name' => $name
|
||||||
|
);
|
||||||
|
|
||||||
|
$shift_start = $shift_end;
|
||||||
|
} while ($shift_end < $end);
|
||||||
|
}
|
||||||
|
elseif ($mode == 'variable') {
|
||||||
|
sort($change_hours);
|
||||||
|
$day = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d", $start) . " 00:00")->getTimestamp();
|
||||||
|
$change_index = 0;
|
||||||
|
// Ersten/nächsten passenden Schichtwechsel suchen
|
||||||
|
foreach ($change_hours as $i => $change_hour) {
|
||||||
|
if ($start < $day + $change_hour * 60 * 60)
|
||||||
|
$change_index = $i;
|
||||||
|
elseif ($start == $day + $change_hour * 60 * 60) {
|
||||||
|
// Start trifft Schichtwechsel
|
||||||
|
$change_index = ($i +1) % count($change_hours);
|
||||||
|
break;
|
||||||
|
} else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
$shift_start = $start;
|
||||||
|
do {
|
||||||
|
$day = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d", $shift_start) . " 00:00")->getTimestamp();
|
||||||
|
$shift_end = $day + $change_hours[$change_index] * 60 * 60;
|
||||||
|
|
||||||
|
if ($shift_end > $end)
|
||||||
|
$shift_end = $end;
|
||||||
|
if ($shift_start >= $shift_end)
|
||||||
|
$shift_end += 24 * 60 * 60;
|
||||||
|
|
||||||
|
$shifts[] = array (
|
||||||
|
'start' => $shift_start,
|
||||||
|
'end' => $shift_end,
|
||||||
|
'RID' => $rid,
|
||||||
|
'name' => $name
|
||||||
|
);
|
||||||
|
|
||||||
|
$shift_start = $shift_end;
|
||||||
|
$change_index = ($change_index +1) % count($change_hours);
|
||||||
|
} while ($shift_end < $end);
|
||||||
|
}
|
||||||
|
$shifts_table = "";
|
||||||
|
foreach ($shifts as $shift) {
|
||||||
|
$shifts_table .= '<tr><td>' . date("Y-m-d H:i", $shift['start']) . ' - ' . date("H:i", $shift['end']) . '<br />' . $room_array[$shift['RID']] . '</td>';
|
||||||
|
$shifts_table .= '<td>' . $shift['name'] . '</td></tr>';
|
||||||
|
}
|
||||||
|
return template_render('../templates/admin_shift_preview.html', array (
|
||||||
|
'shifts_table' => $shifts_table
|
||||||
|
));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$room_select = html_select_key('rid', $room_array, '');
|
$room_select = html_select_key('rid', $room_array, '');
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<h3>Vorschau:</h3>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>
|
||||||
|
Timeslot
|
||||||
|
</th>
|
||||||
|
<th>
|
||||||
|
Entries
|
||||||
|
</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
%shifts_table%
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
<label>
|
<label>
|
||||||
Schichtwechsel-Stunden:
|
Schichtwechsel-Stunden:
|
||||||
</label>
|
</label>
|
||||||
<input type="text" name="change_hours" value="00, 04, 08, 10, 12, 14, 16, 18, 20, 22" />
|
<input type="text" name="change_hours" style="width: 300px;" value="00, 04, 08, 10, 12, 14, 16, 18, 20, 22" />
|
||||||
</p><h2>Benötigte Engel:</h2>
|
</p><h2>Benötigte Engel:</h2>
|
||||||
<p>
|
<p>
|
||||||
<label>
|
<label>
|
||||||
|
|
Loading…
Reference in New Issue