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ä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ändert.'; $template->assign('success', $success); } //------------------------ speicherbutten elseif(isset($_POST['datasave'])) { foreach($_POST['list'] as $row) { // echo $row['tid'].' <- ID
'.$row['infotext'].' <- Infotext
'.$row['Fahrer'].' <- Fahrer
'.$row['Fahrzeug'].' <- Fahrzeug


'; $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ä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'); ?>