<link href="../../rechnung.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p> </p>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../../img/rg_hintergrund_kickbusch.png" width="1024" height="150" alt="head" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td class="kleineSchrift"><?php echo $row_mandant['firmenname']; ?>• <?php echo $row_mandant['strasse']; ?> <?php echo $row_mandant['nr']; ?> • <?php echo $row_mandant['plz']; ?> <?php echo $row_mandant['ort']; ?></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><?php echo $row_kunde_fahrt['anrede']; ?></td>
</tr>
<tr>
<td><?php echo $row_kunde_fahrt['vorname']; ?> <?php echo $row_kunde_fahrt['name']; ?></td>
</tr>
<tr>
<td><?php echo $row_kunde_fahrt['strasse']; ?> <?php echo $row_kunde_fahrt['nr']; ?></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><?php echo $row_kunde_fahrt['plz']; ?> <?php echo $row_kunde_fahrt['ort']; ?><?php
// Variablen definieren
$name = $_GET['name'];
$vname = $_GET['vorname'];
$ab = $_GET['ab'];
$bis = $_GET['bis'];
// DB Update für Abrechnung
$sqlupdate = "UPDATE fahrten
SET
abgerechnet ='X'
WHERE
name = '$name' AND vorname = '$vname' AND datum BETWEEN '$ab' AND '$bis'";
$update = mysql_query($sqlupdate);
?>
<?php
//Aktuelles Datum erfassen
$aktuelles_datum = date("Y-m-d");
if($row_kunde_fahrt['datum']='0000-00-00')
{
$sqlDATEupdate = "UPDATE fahrten
SET
datum_abgerechnet = '$aktuelles_datum'
WHERE
name = '$name' AND vorname = '$vname' AND datum BETWEEN '$ab' AND '$bis'";
$DATEupdate = mysql_query($sqlDATEupdate);
}
else
{
exit;
}
?>
</td>
</tr>
</table>
<p class="Betreff"><span class="Rote_Schrift">
<?php if ($totalRows_abgerechnet > 0) { // Show if recordset not empty ?>
ACHTUNG, DIESE RECHNUNG IST BEREITS ABGERECHNET WORDEN
<?php } // Show if recordset not empty ?>
</span></p>
<p class="Betreff"><?php echo $row_textbausteine_betreff_betreff['text']; ?></p>
<p class="Betreff"> Zeitraum : <span class="datum">
<?php
$datum_org = $_GET['ab'];
$datum_array=explode("-",$datum_org);
$datum=$datum_array[2].".".$datum_array[1].".".$datum_array[0];
echo $datum;
?>
</span> bis: <span class="datum">
<?php
$datum_org = $_GET['bis'];
$datum_array=explode("-",$datum_org);
$datum=$datum_array[2].".".$datum_array[1].".".$datum_array[0];
echo $datum;
?>
</span></p>
<p><span class="Betreff"></span></p>
<p>Aufgrund der von uns erbrachten Leistungen berechnen wir Ihnen wie folgt:</p>
<p><em><strong>Gesamtbetrag: <?php echo $row_ges_betrag['SUM( preis )']; ?> €</strong></em></p>
<?php if ($totalRows_kunde_fahrt > 0) { // Show if recordset not empty ?>
<table width="690" border="1" align="left" cellpadding="0" cellspacing="0" class="fahrtentabelle">
<tr>
<td class="rgnr">Rg. Nr</td>
<td class="datum">Datum</td>
<td class="aort">Abfahrtsort</td>
<td class="zort">Zielort</td>
<td class="preis" >Preis</td>
<td width="220" class="mwst">Mwst</td>
<td width="361" class="typ">Typ</td>
</tr>
<tr>
<td class="rgnr"> </td>
<td class="datum"> </td>
<td class="aort"> </td>
<td class="zort"> </td>
<td class="preis" > </td>
<td class="mwst"> </td>
<td class="typ"> </td>
</tr>
<?php do { ?>
<tr>
<td class="rgnr"><?php echo $row_kunde_fahrt['id']; ?></td>
<td class="datum"><?php
$datum_org = $row_kunde_fahrt['datum'];
$datum_array=explode("-",$datum_org);
$datum=$datum_array[2].".".$datum_array[1].".".$datum_array[0];
echo $datum;
?></td>
<td class="aort"><?php echo $row_kunde_fahrt['abfahrtsort']; ?></td>
<td class="zort"><?php echo $row_kunde_fahrt['zielort']; ?></td>
<td class="preis" ><?php echo $row_kunde_fahrt['preis']; ?></td>
<td class="mwst"><?php echo $row_kunde_fahrt['mwst']; ?> %</td>
<td class="typ"><?php echo $row_kunde_fahrt['bezeichnung']; ?></td>
</tr>
<tr>
<td colspan="7" bgcolor="#CCCCCC" class="rgnr"> </td>
</tr>
<?php } while ($row_kunde_fahrt = mysql_fetch_assoc($kunde_fahrt)); ?>
</table>
<p> </p>
<p> </p>
<p> </p>
<?php } // Show if recordset not empty ?>
<?php if ($totalRows_kunde_fahrt == 0) { // Show if recordset empty ?>
<p>Dieser Kunde hat keine gespeicherten Fahrten.</p>
<p> </p>
<?php } // Show if recordset empty ?>
<table width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="mittlere_schrift"><?php echo $row_zahlungsziel['text']; ?></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><form id="form1" name="form1" method="post" action="">
<label>
<textarea style="border:none" name="Fußzeile" id="Fußzeile" cols="85" rows="10"><?php echo $row_fusszeile['text']; ?></textarea>
</label>
</form></td>
</tr>
</table>
<p>
<?php
$akt_rg_nr = $totalRows_rg_nr_sammel + 1;
mysql_query("INSERT INTO rg_nr (nr) VALUES('$akt_rg_nr') ")
or die(mysql_error());
?>
</p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>
<?php
mysql_free_result($kunde_fahrt);
mysql_free_result($ges_betrag);
mysql_free_result($mandant);
mysql_free_result($textbausteine_betreff_betreff);
mysql_free_result($zahlungsziel);
mysql_free_result($fusszeile);
mysql_free_result($abgerechnet);
mysql_free_result($rg_nr_sammel);
?>