69 lines
2.4 KiB
PHP
69 lines
2.4 KiB
PHP
<html>
|
|
<head>
|
|
<title><?php echo getLngt("AUFTRAGSDETAILS") ?></title>
|
|
<link rel="stylesheet" type="text/css" href="../css/phoenix.css">
|
|
<script src="../include/lib_courier.js" type="text/javascript">
|
|
</script>
|
|
|
|
<noscript>
|
|
<center>
|
|
<b><br>JavaScript ist nicht verfügbar. Bitte aktivieren Sie JavaScript<br><br>
|
|
in Ihrem Browser, damit diese Seite ordnungsgemäß funktioniert!</b><br><br>
|
|
</center>
|
|
</noscript>
|
|
</head>
|
|
<body onLoad="this.moveTo((screen.width * 0.5)-(document.body.offsetWidth * 0.5),(screen.height * 0.5)-(document.body.offsetHeight * 0.5));">
|
|
|
|
<form name="jb_detail" action="../admin/jb_detail.php" method="post">
|
|
<input type="hidden" name="f_act" value="">
|
|
<input type="hidden" name="job_id" value="<?php echo ec($job_id) ?>">
|
|
<input type="hidden" name="customerId" value="<?php echo ec($customerId) ?>">
|
|
<input type="hidden" name="cscIdRoot" value="<?php echo ec($cscIdRoot) ?>">
|
|
<input type="hidden" name="cscIdActual" value="<?php echo ec($cscIdActual) ?>">
|
|
<input type="hidden" name="empIdMaster" value="<?php echo ec($empIdMaster) ?>">
|
|
<input type="hidden" name="dbhistory" value="<?php echo ec($dbhistory) ?>">
|
|
|
|
|
|
<table class="f8np1" cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
|
<tr>
|
|
<td valign="top">
|
|
<!-- JOB-DATA -->
|
|
<table cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
|
<tr><td><b><?php echo getLngt("AUFTRAG:") ?></b></td></tr>
|
|
<?php if ($automailer == "0") : echo $jobentry; endif; ?>
|
|
</table>
|
|
</td>
|
|
<td>
|
|
|
|
</td>
|
|
<td valign="top">
|
|
<!-- COURIER-DATA -->
|
|
<table cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
|
<tr><td><b><?php echo getLngt("TRANSPORTEUR:") ?></b></td></tr>
|
|
<?php if ($automailer == "0") : echo $courierentry; endif; ?>
|
|
</table>
|
|
</td>
|
|
<tr>
|
|
</table>
|
|
|
|
<br><br>
|
|
|
|
<!-- TOUR-DATA -->
|
|
<table class="f8np1" cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
|
<tr><td><b> <?php echo getLngt("TOUR:") ?></b></td></tr>
|
|
<tr>
|
|
<?php if ($automailer == "0") : echo $tourentry; endif; ?>
|
|
</tr>
|
|
</table>
|
|
|
|
<br><br>
|
|
|
|
<table class="f8np1" cellspacing="0" cellpadding="0" vspace="0" hspace="0">
|
|
<tr><td colspan="4"><b><?php echo getLngt("KOSTEN:") ?></b></td></tr>
|
|
<?php if ($automailer == "0") : echo $jobcosts; endif; ?>
|
|
</table>
|
|
|
|
</form>
|
|
</body>
|
|
</html>
|