#5 fixed shift calculation
This commit is contained in:
parent
024c5ff2e2
commit
b399227956
|
@ -10,8 +10,8 @@ function admin_shifts() {
|
||||||
$rid = 0;
|
$rid = 0;
|
||||||
$start = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d") . " 00:00")->getTimestamp();
|
$start = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d") . " 00:00")->getTimestamp();
|
||||||
$end = $start +24 * 60 * 60;
|
$end = $start +24 * 60 * 60;
|
||||||
$mode = 'single';
|
$mode = '';
|
||||||
$angelmode = 'location';
|
$angelmode = '';
|
||||||
|
|
||||||
// Locations laden
|
// Locations laden
|
||||||
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
$rooms = sql_select("SELECT * FROM `Room` WHERE `show`='Y' ORDER BY `Name`");
|
||||||
|
@ -94,6 +94,7 @@ function admin_shifts() {
|
||||||
$angelmode = 'location';
|
$angelmode = 'location';
|
||||||
}
|
}
|
||||||
elseif ($_REQUEST['angelmode'] == 'manually') {
|
elseif ($_REQUEST['angelmode'] == 'manually') {
|
||||||
|
$angelmode = 'manually';
|
||||||
foreach ($types as $type) {
|
foreach ($types as $type) {
|
||||||
if (isset ($_REQUEST['type_' . $type['TID']]) && preg_match("/^[0-9]+$/", trim($_REQUEST['type_' . $type['TID']]))) {
|
if (isset ($_REQUEST['type_' . $type['TID']]) && preg_match("/^[0-9]+$/", trim($_REQUEST['type_' . $type['TID']]))) {
|
||||||
$needed_angel_types[$type['TID']] = trim($_REQUEST['type_' . $type['TID']]);
|
$needed_angel_types[$type['TID']] = trim($_REQUEST['type_' . $type['TID']]);
|
||||||
|
@ -102,14 +103,27 @@ function admin_shifts() {
|
||||||
$msg .= error("Bitte überprüfe die Eingaben für die benötigten Engel des Typs " . $type['Name'] . ".");
|
$msg .= error("Bitte überprüfe die Eingaben für die benötigten Engel des Typs " . $type['Name'] . ".");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (array_sum($needed_angel_types) == 0) {
|
||||||
|
$ok = false;
|
||||||
|
$msg .= error("Es werden 0 Engel benötigt. Bitte wähle benötigte Engel.");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
$ok = false;
|
$ok = false;
|
||||||
$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.");
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
$ok = false;
|
||||||
|
$msg .= error("Bitte wähle benötigte Engel.");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Alle Eingaben in Ordnung
|
// Alle Eingaben in Ordnung
|
||||||
if ($ok) {
|
if ($ok) {
|
||||||
|
if ($angelmode == 'location') {
|
||||||
|
$needed_angel_types = array ();
|
||||||
|
$needed_angel_types_location = sql_select("SELECT * FROM `NeededAngelTypes` WHERE `room_id`=" . sql_escape($rid));
|
||||||
|
foreach ($needed_angel_types_location as $type)
|
||||||
|
$needed_angel_types[$type['angel_type_id']] = $type['count'];
|
||||||
|
}
|
||||||
$shifts = array ();
|
$shifts = array ();
|
||||||
if ($mode == 'single') {
|
if ($mode == 'single') {
|
||||||
$shifts[] = array (
|
$shifts[] = array (
|
||||||
|
@ -140,7 +154,7 @@ function admin_shifts() {
|
||||||
} while ($shift_end < $end);
|
} while ($shift_end < $end);
|
||||||
}
|
}
|
||||||
elseif ($mode == 'variable') {
|
elseif ($mode == 'variable') {
|
||||||
sort($change_hours);
|
rsort($change_hours);
|
||||||
$day = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d", $start) . " 00:00")->getTimestamp();
|
$day = DateTime :: createFromFormat("Y-m-d H:i", date("Y-m-d", $start) . " 00:00")->getTimestamp();
|
||||||
$change_index = 0;
|
$change_index = 0;
|
||||||
// Ersten/nächsten passenden Schichtwechsel suchen
|
// Ersten/nächsten passenden Schichtwechsel suchen
|
||||||
|
@ -149,7 +163,7 @@ function admin_shifts() {
|
||||||
$change_index = $i;
|
$change_index = $i;
|
||||||
elseif ($start == $day + $change_hour * 60 * 60) {
|
elseif ($start == $day + $change_hour * 60 * 60) {
|
||||||
// Start trifft Schichtwechsel
|
// Start trifft Schichtwechsel
|
||||||
$change_index = ($i +1) % count($change_hours);
|
$change_index = ($i +count($change_hours) - 1) % count($change_hours);
|
||||||
break;
|
break;
|
||||||
} else
|
} else
|
||||||
break;
|
break;
|
||||||
|
@ -173,18 +187,45 @@ function admin_shifts() {
|
||||||
);
|
);
|
||||||
|
|
||||||
$shift_start = $shift_end;
|
$shift_start = $shift_end;
|
||||||
$change_index = ($change_index +1) % count($change_hours);
|
$change_index = ($change_index +count($change_hours) - 1) % count($change_hours);
|
||||||
} while ($shift_end < $end);
|
} while ($shift_end < $end);
|
||||||
}
|
}
|
||||||
|
|
||||||
$shifts_table = "";
|
$shifts_table = "";
|
||||||
foreach ($shifts as $shift) {
|
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 .= '<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>';
|
$shifts_table .= '<td>' . $shift['name'];
|
||||||
|
foreach ($types as $type) {
|
||||||
|
if (isset ($needed_angel_types[$type['TID']]) && $needed_angel_types[$type['TID']] > 0)
|
||||||
|
$shifts_table .= '<br /><b>' . $type['Name'] . ':</b> ' . $needed_angel_types[$type['TID']] . ' missing';
|
||||||
|
}
|
||||||
|
$shifts_table .= '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fürs Anlegen zwischenspeichern:
|
||||||
|
$_SESSION['admin_shifts_shifts'] = $shifts;
|
||||||
|
$_SESSION['admin_shifts_types'] = $needed_angel_types;
|
||||||
|
|
||||||
return template_render('../templates/admin_shift_preview.html', array (
|
return template_render('../templates/admin_shift_preview.html', array (
|
||||||
'shifts_table' => $shifts_table
|
'shifts_table' => $shifts_table
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
elseif (isset ($_REQUEST['submit'])) {
|
||||||
|
if (!is_array($_SESSION['admin_shifts_shifts']) || !is_array($_SESSION['admin_shifts_types'])) {
|
||||||
|
header("Location: ?p=admin_shifts");
|
||||||
|
die();
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($_SESSION['admin_shifts_shifts'] as $shift) {
|
||||||
|
foreach ($_SESSION['admin_shifts_types'] as $type) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
unset ($_SESSION['admin_shifts_shifts']);
|
||||||
|
unset ($_SESSION['admin_shifts_types']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$room_select = html_select_key('rid', $room_array, '');
|
$room_select = html_select_key('rid', $room_array, '');
|
||||||
|
|
|
@ -1,17 +1,23 @@
|
||||||
<h3>Vorschau:</h3>
|
<h3>Vorschau:</h3>
|
||||||
<table>
|
<form action="" method="post">
|
||||||
<thead>
|
<fieldset>
|
||||||
<tr>
|
<table>
|
||||||
<th>
|
<thead>
|
||||||
Timeslot
|
<tr>
|
||||||
</th>
|
<th>
|
||||||
<th>
|
Timeslot
|
||||||
Entries
|
</th>
|
||||||
</th>
|
<th>
|
||||||
</tr>
|
Entries
|
||||||
</thead>
|
</th>
|
||||||
<tbody>
|
</tr>
|
||||||
%shifts_table%
|
</thead>
|
||||||
</tbody>
|
<tbody>
|
||||||
</table>
|
%shifts_table%
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<p>
|
||||||
|
<input type="submit" name="submit" value="Erstellen" />
|
||||||
|
</p>
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
|
@ -6,9 +6,11 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
document.getElementById("type_%id%_up").onclick = function(e){
|
document.getElementById("type_%id%_up").onclick = function(e){
|
||||||
document.getElementById("type_%id%").value = (parseInt(document.getElementById("type_%id%").value) + 101) % 100;
|
document.getElementById("type_%id%").value = (parseInt(document.getElementById("type_%id%").value) + 101) % 100;
|
||||||
|
return false;
|
||||||
};
|
};
|
||||||
document.getElementById("type_%id%_down").onclick = function(e){
|
document.getElementById("type_%id%_down").onclick = function(e){
|
||||||
document.getElementById("type_%id%").value = (parseInt(document.getElementById("type_%id%").value) +99) % 100;
|
document.getElementById("type_%id%").value = (parseInt(document.getElementById("type_%id%").value) +99) % 100;
|
||||||
|
return false;
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in New Issue