2019-02-06 09:53:12 +00:00
|
|
|
<!DOCTYPE html>
|
2020-05-20 14:23:53 +00:00
|
|
|
<html v-bind:lang="$i18n.locale">
|
2019-02-06 09:53:12 +00:00
|
|
|
<body>
|
2019-11-11 10:04:49 +00:00
|
|
|
<table class="grid">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<!-- Header block -->
|
2020-07-02 14:07:26 +00:00
|
|
|
<report-header v-bind="$props"></report-header>
|
2019-11-11 10:04:49 +00:00
|
|
|
<!-- Block -->
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
|
|
|
<div 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>.
|
|
|
|
</p>
|
|
|
|
<div class="signature">
|
|
|
|
<img v-bind:src="getReportSrc('signature.png')">
|
|
|
|
<p class="centered">{{$t('payed', [
|
|
|
|
'Silla',
|
|
|
|
receipt.payed.getDate(),
|
|
|
|
$t('months')[receipt.payed.getMonth()],
|
|
|
|
receipt.payed.getFullYear()])
|
|
|
|
}}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Footer block -->
|
2020-07-02 14:07:26 +00:00
|
|
|
<report-footer id="pageFooter"
|
|
|
|
v-bind:left-text="$t('client', [client.id])"
|
|
|
|
v-bind:center-text="client.socialName"
|
|
|
|
v-bind="$props">
|
|
|
|
</report-footer>
|
2019-11-11 10:04:49 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-02-06 09:53:12 +00:00
|
|
|
</body>
|
|
|
|
</html>
|