108 lines
2.8 KiB
HTML
108 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>XINON Shipping Note 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: 48px">
|
|
<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>Lieferadresse</div>
|
|
<div>{{ addressLine_1 }}</div>
|
|
<div>{{ addressLine_2 }}</div>
|
|
<div>{{ addressLine_3 }}</div>
|
|
<div>{{ addressLine_4 }}</div>
|
|
<div>{{ addressLine_5 }}</div>
|
|
</td>
|
|
<td class="customer-details">
|
|
<div>Rechnungsadresse</div>
|
|
<div>{{ billingAddressLine_1 }}</div>
|
|
<div>{{ billingAddressLine_2 }}</div>
|
|
<div>{{ billingAddressLine_3 }}</div>
|
|
<div>{{ billingAddressLine_4 }}</div>
|
|
<div>{{ billingAddressLine_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>LS-Nummer:</td>
|
|
<td>{{ shippingNoteNumber }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>LS-Datum:</td>
|
|
<td>{{ shippingNoteDate }}</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<div class="separator"></div>
|
|
|
|
</body>
|
|
</html>
|