134 lines
3.1 KiB
HTML
134 lines
3.1 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: "Calibri", sans-serif, Verdana;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.rml-header-text {
|
|
padding-left: 12pt;
|
|
width: 60%;
|
|
font-size: 17px;
|
|
padding-top: 52px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
.rml-header-text .header {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.info-table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
.customer-details {
|
|
font-weight: bold;
|
|
vertical-align: top;
|
|
font-size: 14px;
|
|
padding-left: 30pt;
|
|
padding-right: 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>
|
|
|
|
|
|
<table style="width: 100%; margin-bottom: 64px;">
|
|
<tr>
|
|
<td class="rml-header-text">
|
|
<span class="header">RML Infrastruktur GmbH</span><br />
|
|
Hauptstraße 36 / 3. OG<br />
|
|
8940 Liezen<br />
|
|
Österreich
|
|
</td>
|
|
<td style="width: 40%; text-align: right; padding-right: 0;">
|
|
|
|
</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>
|
|
<div>{{ addressLine_6 }}</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 }}
|
|
{{ orderNumberHtml }}
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<div class="separator"></div>
|
|
|
|
</body>
|
|
</html>
|