salix/print/templates/reports/receipt/receipt.html

44 lines
1.9 KiB
HTML
Raw Normal View History

2019-02-06 09:53:12 +00:00
<!DOCTYPE html>
2019-10-31 11:43:04 +00:00
<html v-bind:lang="locale">
2019-02-06 09:53:12 +00:00
<body>
<section class="container" id="report">
<!-- Header component -->
2019-10-31 11:43:04 +00:00
<report-header
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</report-header>
2019-02-06 09:53:12 +00:00
<!-- End header component -->
<section class="main">
<!-- Report start -->
2019-02-07 06:47:09 +00:00
<section class="content">
<h1 class="title centered uppercase">{{$t('title')}}</h1>
<p class="centered">
Recibo de <strong class="uppercase">{{client.socialName}}</strong>,
la cantidad de <strong>{{receipt.amountPaid}} €</strong> en concepto de 'entrega a cuenta',
quedando pendiente en la cuenta del cliente
un saldo de <strong>{{receipt.amountUnpaid}} €</strong>.
2019-02-07 06:47:09 +00:00
</p>
<section class="signature">
2019-10-31 11:43:04 +00:00
<img v-bind:src="getReportSrc('signature.png')">
2019-10-29 06:46:44 +00:00
<p class="centered">{{$t('payed', [
'Silla',
receipt.payed.getDate(),
$t('months')[receipt.payed.getMonth()],
receipt.payed.getFullYear()])
}}
</p>
2019-02-07 06:47:09 +00:00
</section>
</section>
2019-02-06 09:53:12 +00:00
<!-- Report end -->
</section>
<!-- Footer component -->
<report-footer id="pageFooter"
2019-10-31 11:43:04 +00:00
v-bind:left-text="$t('client', [client.id])"
v-bind:center-text="client.socialName"
v-bind:is-preview="isPreview"
v-bind:locale="locale">
2019-02-06 09:53:12 +00:00
</report-footer>
<!-- End footer component -->
</section>
</body>
</html>