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

31 lines
1.2 KiB
HTML
Raw Normal View History

2022-11-10 09:38:54 +00:00
<report-body v-bind="$props">
2022-11-10 07:57:42 +00:00
<div class="grid-row">
<div class="grid-block">
<div class="content">
<h1 class="title centered uppercase">{{$t('title')}}</h1>
<p class="centered">
2023-01-30 08:45:10 +00:00
Recibo de <strong class="uppercase">{{client.socialName}}</strong>,
la cantidad de <strong>{{receipt.amountPaid}} €</strong>
en concepto de 'entrega a cuenta'.
2022-11-10 07:57:42 +00:00
</p>
<div class="signature">
2022-11-10 09:38:54 +00:00
<img v-bind:src="getReportSrc('signature.png')" />
<p class="centered">
{{$t('payed', [ 'Algemesí', receipt.payed.getDate(), $t('months')[receipt.payed.getMonth()],
receipt.payed.getFullYear()]) }}
2022-11-10 07:57:42 +00:00
</p>
</div>
</div>
</div>
</div>
2022-11-10 09:38:54 +00:00
<template v-slot:footer>
<report-footer
id="pageFooter"
v-bind:left-text="$t('client', [client.id])"
v-bind:center-text="client.socialName"
v-bind="$props"
>
</report-footer>
</template>
</report-body>