119 lines
2.9 KiB
HTML
119 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Invoice Header</title>
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
body {
|
|
position: absolute;
|
|
top: 290px;
|
|
width: 100%;
|
|
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 th {
|
|
text-align: right;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.invoice-details td {
|
|
text-align: left;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.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: 64px;">
|
|
<tr>
|
|
<td style="padding-left: 30pt; width: 60%; font-size: 14px; padding-top: 52px;">
|
|
<strong>RML Infrastruktur GmbH</strong><br />
|
|
Wirtschaftspark A<br />
|
|
8940 Liezen<br />
|
|
Österreich
|
|
</td>
|
|
<td style="width: 40%; text-align: right; padding-right: 0;">
|
|
<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>
|
|
<table class="invoice-details">
|
|
<tr>
|
|
<th>Rechnungsdatum:</th>
|
|
<td>{{ invoiceDate }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Kundennummer:</th>
|
|
<td>{{ customerNumber }}</td>
|
|
</tr>
|
|
{{ vatHtml }}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<div class="separator"></div>
|
|
|
|
</body>
|
|
</html>
|