- Endzeiten bei CheckOut und Startzeiten bei CheckIn komplett entfernt
- Zeiten einzeln Ein- und Ausblendbar gemacht - Quelle für Zeilenfarbe einstellbar gemacht - Zeiten werden jetzt bei erreichen bzw überschreiten immer markiert (nur die Zeit) - Nicht benötigte Spalten werden automatisch ausgeblendet - Config Datei Ausgedünnt (Bitte komplette Epirent-Settings (nicht Login) Sektion ersetzen
This commit is contained in:
@@ -120,7 +120,7 @@ $Epi = new Epirent();
|
||||
const el = $scroller.get(0);
|
||||
const st = ensureState(el);
|
||||
if (st.userActive) return;
|
||||
if (st.loopHeight > 0) startAutoScroll($scroller, 1, 40);
|
||||
if (st.loopHeight > 0) startAutoScroll($scroller, 1, 80);
|
||||
else stopAutoScroll($scroller);
|
||||
}
|
||||
|
||||
@@ -147,7 +147,7 @@ $Epi = new Epirent();
|
||||
}
|
||||
// Auto-Scroll (wieder) starten
|
||||
stopAutoScroll($scroller);
|
||||
startAutoScroll($scroller, 1, 40);
|
||||
startAutoScroll($scroller, 1, 80);
|
||||
} else {
|
||||
// kein Overflow -> ganz oben und Auto-Scroll aus
|
||||
if (scEl.scrollTop !== 0) requestAnimationFrame(() => { scEl.scrollTop = 0; });
|
||||
@@ -239,25 +239,31 @@ $Epi = new Epirent();
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Kunde</th>
|
||||
<th scope="col">Event</th>
|
||||
<th scope="col">
|
||||
|
||||
<?php
|
||||
if (!HideDispoTimes) {
|
||||
echo "Dispo-Start";
|
||||
if(ShowCheckoutTimeOnCheckout || ShowVorbereitungTimeOnCheckout||ShowPackagingTimeOnCheckout || ShowDeliveryTimeOnCheckout){
|
||||
echo '<th scope="col">';
|
||||
}
|
||||
if (UsePackingNoteDateForCheckout) {
|
||||
echo "<br><i>Packen-Start</i></th>";
|
||||
} else {
|
||||
echo "<br><i>VB-Start</i></th>";
|
||||
}
|
||||
if (!HideCheckInTimeOnCheckout) {
|
||||
if(!HideDispoTimes){
|
||||
echo "<th scope='col'>Dispo-Ende<br><i>VB-Ende</i></th>";
|
||||
}else{
|
||||
echo "<th scope='col'><i>VB-Ende</i></th>";
|
||||
|
||||
}
|
||||
|
||||
|
||||
if(ShowCheckoutTimeOnCheckout){
|
||||
echo "Dispo-Start";
|
||||
}
|
||||
if(ShowVorbereitungTimeOnCheckout){
|
||||
if(ShowCheckoutTimeOnCheckout){echo "<br>";}
|
||||
echo "VB-Start";
|
||||
}
|
||||
if(ShowPackagingTimeOnCheckout){
|
||||
if(ShowCheckoutTimeOnCheckout||ShowVorbereitungTimeOnCheckout){echo "<br>";}
|
||||
echo "Packen";
|
||||
}
|
||||
if(ShowDeliveryTimeOnCheckout){
|
||||
if(ShowCheckoutTimeOnCheckout || ShowVorbereitungTimeOnCheckout||ShowPackagingTimeOnCheckout){echo "<br>";}
|
||||
echo "Liefern";
|
||||
}
|
||||
if(ShowCheckoutTimeOnCheckout || ShowVorbereitungTimeOnCheckout||ShowPackagingTimeOnCheckout || ShowDeliveryTimeOnCheckout){
|
||||
echo '</th>';
|
||||
}
|
||||
|
||||
?>
|
||||
<th scope="col">Status</th>
|
||||
<?php
|
||||
@@ -280,24 +286,31 @@ $Epi = new Epirent();
|
||||
<tr>
|
||||
<th scope="col">#</th>
|
||||
<th scope="col">Kunde</th>
|
||||
<th scope="col">Event</th>
|
||||
|
||||
<?php
|
||||
if (!HideCheckOutTimeOnCheckin) {
|
||||
echo "<th scope='col'>Dispo-Start<br><i>RP-Start</i></th>";
|
||||
}
|
||||
|
||||
if(!HideDispoTimes){
|
||||
echo "<th scope='col'>Dispo-Ende";
|
||||
}else{
|
||||
echo "<th scope='col'>";
|
||||
}
|
||||
if (UsePackingNoteDateForCheckin) {
|
||||
echo "<br><i>Rücklieferung</i></th>";
|
||||
} else {
|
||||
echo "<br><i>RP-Ende</i></th>";
|
||||
}
|
||||
?>
|
||||
<th scope="col">Event</th> <?php
|
||||
if(ShowCheckInTimeOnCheckin || ShowNachbereitungTimeOnCheckin ||ShowRePackagingTimeOnCheckin || ShowReDeliveryTimeOnCheckin){
|
||||
echo '<th scope="col">';
|
||||
}
|
||||
|
||||
if(ShowCheckInTimeOnCheckin){
|
||||
echo "Dispo-Ende";
|
||||
}
|
||||
if(ShowNachbereitungTimeOnCheckin){
|
||||
if(ShowCheckInTimeOnCheckin){echo "<br>";}
|
||||
echo "Nachbereitung";
|
||||
}
|
||||
if(ShowRePackagingTimeOnCheckin){
|
||||
if(ShowCheckInTimeOnCheckin||ShowNachbereitungTimeOnCheckin){echo "<br>";}
|
||||
echo "Zurückpacken";
|
||||
}
|
||||
if(ShowReDeliveryTimeOnCheckin){
|
||||
if(ShowCheckInTimeOnCheckin || ShowNachbereitungTimeOnCheckin||ShowRePackagingTimeOnCheckin){echo "<br>";}
|
||||
echo "Rückliefern";
|
||||
}
|
||||
if(ShowCheckInTimeOnCheckin || ShowNachbereitungTimeOnCheckin||ShowRePackagingTimeOnCheckin || ShowReDeliveryTimeOnCheckin){
|
||||
echo '</th>';
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user