51 lines
2.4 KiB
HTML
51 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html v-bind:lang="$i18n.locale">
|
|
<body>
|
|
<table class="grid">
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<!-- Header block -->
|
|
<report-header v-bind="$props"></report-header>
|
|
<!-- Block -->
|
|
<div class="grid-row">
|
|
<div class="grid-block">
|
|
<h1 class="title centered uppercase">{{$t('title')}}</h1>
|
|
<p>{{$t('toAttention')}}</p>
|
|
<p v-html="$t('declaration', [invoice.ref, issued])"></p>
|
|
<p>
|
|
<ul>
|
|
<li v-for="responsibility in $t('responsibilities')">
|
|
{{responsibility}}
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
<div class="signature">
|
|
<p>{{$t('issued', [
|
|
'Algemesí',
|
|
invoice.issued.getDate(),
|
|
$t('months')[invoice.issued.getMonth()],
|
|
invoice.issued.getFullYear()])
|
|
}}
|
|
</p>
|
|
<p><em>({{$t('signature')}})</em></p>
|
|
<img v-bind:src="getReportSrc('signature.png')">
|
|
<p>
|
|
<div>{{$t('signer.name')}}: JUAN VICENTE FERRER ROIG</div>
|
|
<div>{{$t('signer.ID')}}: 73943586N</div>
|
|
<div>{{$t('signer.position')}}: ADMINISTRADOR</div>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Footer block -->
|
|
<report-footer id="pageFooter"
|
|
v-bind:left-text="$t('invoice', [invoice.ref])"
|
|
v-bind="$props">
|
|
</report-footer>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |