Files
thetool/Layout/default/PreorderBillingInvoice/PDF_HEADER.html
2025-03-22 14:50:08 +01:00

144 lines
3.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Invoice Header</title>
<meta charset="utf-8" />
<style>
body {
border: 0;
margin: 0;
padding-top: 0;
font-family: "Open Sans", sans-serif, Verdana;
font-size: 12px;
}
.info-table {
border-collapse: collapse;
width: 100%;
}
.customer-details {
vertical-align: top;
font-size: 14px;
padding-left: 30pt;
width: 50%;
}
.invoice-details {
border-collapse: collapse;
width: 100%;
border: 2px solid #e1e1e1;
padding: 6px;
font-size: 12px;
}
.invoice-details tr {
padding-top: 0;
padding-bottom: 0;
}
.invoice-details th {
text-align: left;
font-size: 12px;
padding: 6px;
padding-top: 0;
padding-bottom: 0;
}
.invoice-details td {
text-align: left;
font-size: 12px;
padding: 6px;
padding-top: 0;
padding-bottom: 0;
}
.separator {
margin-top: 48px;
height: 1px;
}
#topSpacer {
margin-bottom: 32px;
height: 20px;
}
</style>
</head>
<body>
<div id="topSpacer"></div>
<table style="width: 100%; margin-bottom: 36px;">
<tr>
<td style="width: 60%; font-size: 14px; padding-top: 28px;">
<strong>RML Infrastruktur GmbH</strong><br />
Wirtschaftspark A<br />
8940 Liezen<br />
Österreich
</td>
<td style="width: 40%; text-align: right;">
<img alt="RML Logo" src="{{ basedir }}/public/assets/images/rml-logo-header.png" style="text-align:right;height: 125px;">
</td>
</tr>
</table>
<table style="width: 100%; border-collapse: collapse;">
<tr>
<td class="customer-details">
<div>{{ addressLine_1 }}</div>
<div>{{ addressLine_2 }}</div>
<div>{{ addressLine_3 }}</div>
<div>{{ addressLine_4 }}</div>
<div>{{ addressLine_5 }}</div>
</td>
<td>
<table class="info-table">
<tr>
<td style="width: 100%;">
<table class="invoice-details">
<tr>
<th>Rechnungsdatum:</th>
<td>{{ invoiceDate }}</td>
</tr>
<tr>
<th>Kundennummer:</th>
<td>{{ customerNumber }}</td>
</tr>
{{ vatHtml }}
<tr>
<th>&nbsp;</th>
<td></td>
</tr>
<tr>
<th>Sachbearbeiter:</th>
<td>{{ caseWorker }}</td>
</tr>
<tr>
<th>Telefon:</th>
<td>{{ caseWorkerPhone }}</td>
</tr>
<tr>
<th>Email:</th>
<td>{{ caseWorkerEmail }}</td>
</tr>
<tr>
<th>Unsere Auftragsnummer:</th>
<td>{{ orderNumber }}</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class="separator"></div>
</body>
</html>