jb-data.de/scripts/itip.php
2025-08-11 22:23:30 +02:00

168 lines
7.4 KiB
PHP

<?php
// error_reporting(E_ALL);
// ini_set('display_errors', 1);
$_SESSION['m1']=3; $_SESSION['m2']=8;
if($_SESSION['benutzer']==12) { $planer="T. Muerbe"; }
else if($_SESSION['benutzer']==13) { $planer="Anett"; }
else if($_SESSION['benutzer']==18) { $planer="Joerg Basse"; }
else if($_SESSION['benutzer']==44) { $planer="I. Steinmacher"; }
else $planer="Frank";
$jahr = (int)date('Y');
$pjahr=date('W', (mktime(0, 0, 0, 1, 1, $jahr+1) - 4*86400));
$ijahr=date('W', (mktime(0, 0, 0, 1, 1, $jahr) - 4*86400));
$mjahr=date('W', (mktime(0, 0, 0, 1, 1, $jahr-1) - 4*86400));
if(isset($_GET['wahl'])) {
if($_GET['wahl']==1){
if($_GET['kw']==1) {
$kw=$mjahr; $jahr=$_GET['jahr']-1;
} else {
$kw=$_GET['kw']-1;
$jahr=$_GET['jahr'];
}
}
elseif($_GET['wahl']==2) {
if($_GET['kw']==$ijahr) {
$kw=1; $jahr=$_GET['jahr']+1;
} else {
$kw=$_GET['kw']+1;
$jahr=$_GET['jahr'];
}
}
} else {
$jahr = (int)date('Y');
$kw = (int)date('W');
}
//----------------------------------------------- TIP-Normplan speichern
if(isset($_POST['npsave'])) {
$tmp = $GLOBALS['mysql']->query("SELECT * FROM touren WHERE typ=13");
while($row = $tmp->fetch_assoc()) {
if($row['utyp']==1) {
$GLOBALS['mysql']->insert("UPDATE tourenliste SET Norm='".$_POST['rsnorm1']."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
}
if($row['utyp']==2) {
$GLOBALS['mysql']->insert("UPDATE tourenliste SET Norm='".$_POST['rsnorm2']."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
}
if($row['utyp']==3) {
$GLOBALS['mysql']->insert("UPDATE tourenliste SET Norm='".$_POST['rsnorm3']."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
}
/*
if($row['utyp']==4) {
$GLOBALS['mysql']->insert("UPDATE tourenliste SET Norm='".$_POST['rsnorm4']."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
}
*/
}
$success[]='Der Kaufland-Normplan wurde ge&auml;ndert.'; $template->assign('success', $success);
}
//--------------------------------------------------------------------------------------
//---------------------- Erscheinungstag speichern
elseif(isset($_POST['datesave'])) {
$tmp = $GLOBALS['mysql']->query("SELECT * FROM touren WHERE typ=13");
while($row = $tmp->fetch_assoc()) {
if($row['utyp']==1) {
$teilen = explode(".",$_POST['datumland']);
$GLOBALS['mysql']->insert("UPDATE tourenliste SET tag='".$teilen[0]."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$GLOBALS['mysql']->insert("UPDATE tourenliste SET monat='".$teilen[1]."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$GLOBALS['mysql']->insert("UPDATE tourenliste SET jahr='".$teilen[2]."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$template->assign('datumland', $datumland);
} else {
$teilen = explode(".",$_POST['datumstadt']);
$GLOBALS['mysql']->insert("UPDATE tourenliste SET tag='".$teilen[0]."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$GLOBALS['mysql']->insert("UPDATE tourenliste SET monat='".$teilen[1]."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$GLOBALS['mysql']->insert("UPDATE tourenliste SET jahr='".$teilen[2]."',logid='".time()."' WHERE tour='".$row['id']."' and kw='".$kw."' and jahr='".$jahr."'");
$template->assign('datumstadt',$datumstadt);
}
}
$success[]='Der Kaufland-Abholtag wurde ge&auml;ndert.'; $template->assign('success', $success);
}
//------------------------ speicherbutten
elseif(isset($_POST['datasave'])) {
foreach($_POST['list'] as $row) {
// echo $row['tid'].' <- ID<br>'.$row['infotext'].' <- Infotext<br>'.$row['Fahrer'].' <- Fahrer<br>'.$row['Fahrzeug'].' <- Fahrzeug<br><br><br>';
$GLOBALS['mysql']->insert("UPDATE tourenliste SET exemplare='".$row['exemplare']."',zeit='".$row['szeit']."',Pakete='".$row['pakete']."',gewicht='".$row['gewicht']."',gewicht4='".$row['gewicht4']."',logid='".time()."' WHERE id='".$row['tid']."'");
}
$success[]='Alle Touren wurden ge&auml;ndert.'; $template->assign('success', $success);
}
//-----------------------------------------------------------------------------------------------
//--------------------- auslesen ----------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
$key=0;
$rs_tour = $GLOBALS['mysql']->query("SELECT * FROM tourenliste WHERE kw='".$kw."' and jahr='".$jahr."' and typ=13 ORDER BY utyp,tour");
while($row = $rs_tour->fetch_assoc()) {
$row_tour = $GLOBALS['mysql']->query_single("SELECT * FROM touren WHERE id='".$row['tour']."'");
if($row_tour['utyp']==1) {
$wochentag=date('l',mktime(0,0,0,$row['monat'],$row['tag'],$row['jahr']));
$taginfo1=$GLOBALS['core']->translateDate($wochentag);
$datumland=$row['tag'].".".$row['monat'].".".$row['jahr'];
} else {
$wochentag=date('l',mktime(0,0,0,$row['monat'],$row['tag'],$row['jahr']));
$taginfo2=$GLOBALS['core']->translateDate($wochentag);
$datumstadt=$row['tag'].".".$row['monat'].".".$row['jahr'];
}
$rs_tour2[$key]['tour']=$row_tour['tour'];
$rs_tour2[$key]['id']=$row['id'];
$rs_tour2[$key]['abn']=$row['tour'];
$rs_tour2[$key]['utyp']=$row['utyp'];
if($row['exemplare']==0) { $menge=$row_tour['exemplare']; } else { $menge=$row['exemplare'];}
$rs_tour2[$key]['tid']=$key;
$rs_tour2[$key]['exemplare']=$menge;
$rs_tour2[$key]['datum']=$row['tag'].".".$row['monat'].".".$row['jahr'];
$rs_tour2[$key]['zeit']=$row['zeit'];
$rs_tour2[$key]['gewicht']=$row['gewicht'];
$rs_tour2[$key]['gewicht4']=$row['gewicht4'];
$rs_tour2[$key]['norm']=$row['Norm'];
if($row['Pakete']>0) {
$pak=$row['Pakete'];
$rs_tour2[$key]['pakete'] = ceil($pak);
} else {
$norm=$row['Norm'];
if ($norm>0) {
$pak=$menge/$norm;
$rs_tour2[$key]['pakete'] = ceil($pak);
$rs_tour2[$key]['norm']=$row['Norm'];
}
}
// $rs_tour2[$key]['infotext']=$row['infotext'];
$template->assign('rs_tour2', $rs_tour2);
$key++;
}
$rsnorm1=0; $rsnorm2=0; $rsnorm3=0; $rsnorm4=0;
//--------------- Norm auslesen
$tmp77 = $GLOBALS['mysql']->query("SELECT * FROM tourenliste WHERE kw='".$kw."' and jahr='".$jahr."' and typ=13");
while($row = $tmp77->fetch_assoc()) {
$row_tour = $GLOBALS['mysql']->query_single("SELECT * FROM touren WHERE id='".$row['tour']."'");
if($row_tour['utyp']==1) { $rsnorm1= $row['Norm']; }
if($row_tour['utyp']==2) { $rsnorm2= $row['Norm']; }
if($row_tour['utyp']==3) { $rsnorm3= $row['Norm']; }
if($row_tour['utyp']==4) { $rsnorm4= $row['Norm']; }
$GLOBALS['mysql']->insert("UPDATE tourenliste SET utyp='".$row_tour['utyp']."' WHERE id='".$row['id']."'");
}
//------------------------------------------------------ neue Tour array vorbereiten
//$tourplus = $GLOBALS['mysql']->query_array("SELECT * FROM touren WHERE typ=13 and id>14000 ORDER BY id");
//$template->assign('tourplus', $tourplus);
$template->assign('rsnorm1', $rsnorm1);
$template->assign('rsnorm2', $rsnorm2);
$template->assign('rsnorm3', $rsnorm3);
//$template->assign('rsnorm4', $rsnorm4);
$template->assign('jahr_aktuell', $jahr);
$template->assign('kw_aktuell', $kw);
$template->assign('content', 'tpl/itip.tpl');
?>