Files
thetool/Layout/default/Invoice/PDF_HEADER.html
2024-07-12 17:46:24 +02:00

108 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>XINON Invoice Header</title>
<meta charset="utf-8" />
<style>
body {
border: 0;
margin: 0;
font-family: sans-serif, Verdana;
font-size: 12px;
}
.info-table {
border-collapse: collapse;
width: 100%;
}
.customer-details {
vertical-align: bottom;
font-size: 14px;
padding-left: 30pt;
width: 35%;
}
.invoice-details {
border: 2px solid #e1e1e1;
padding: 6px;
}
.invoice-details td {
text-align: left;
}
.invoice-details td:first-child {
text-align: right;
}
.separator {
margin-top: 24px;
height: 1px;
}
#topSpacer {
margin-bottom: 32px;
height: 20px;
}
</style>
</head>
<body>
<div id="topSpacer"></div>
<div style="height: 50px; margin-bottom: 8px">
<img alt="Xinon Logo" src="{{ basedir }}/public/assets/images/xinon-full.png" style="text-align:left;height: 85px;">
</div>
<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 style="float: right">
<table class="info-table">
<tr>
<td></td>
<td>
<table class="invoice-details">
<tr>
<td>Kundennummer:</td>
<td>{{ customerNumber }}</td>
</tr>
<tr>
<td>Verrechnungskonto:</td>
<td>{{ billingAccount }}</td>
</tr>
<tr>
<td>Rechnungsnummer:</td>
<td>{{ invoiceNumber }}</td>
</tr>
<tr>
<td>Belegdatum:</td>
<td>{{ invoiceDate }}</td>
</tr>
{{ vatHtml }}
</table>
</td>
</tr>
</table>
</td>
<td style="float: right; vertical-align: top; margin-top: 0; padding-top: 0">
<img alt="QR-Code" src="{{ qrCodeSrc }}" style="text-align:right;height: 3.5cm;">
</td>
</tr>
</table>
<div class="separator"></div>
</body>
</html>