2022-10-28 12:49:22 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html v-bind:lang="$i18n.locale">
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<table class="grid">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<!-- Header block -->
|
|
|
|
<report-header v-bind="$props">
|
|
|
|
</report-header>
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
|
|
|
<div class="columns">
|
|
|
|
<div class="size50">
|
2022-11-02 14:54:23 +00:00
|
|
|
<p style="text-align: right;">{{$t('Place')}} {{currentDate()}}</p>
|
|
|
|
<h3 style="text-align: center; margin-top: 8%;">{{$t('Compensation') | uppercase}}</h3>
|
|
|
|
<p style="margin-top: 8%;">{{$t('In one hand')}}:</p>
|
|
|
|
<p style="text-align: justify;">{{company.name}} {{$t('CIF')}} {{company.nif}} {{$t('Home')}} {{company.street}}, {{company.city}}.</p>
|
|
|
|
<p style="margin-top: 5%;">{{$t('In other hand')}}:</p>
|
|
|
|
<p style="text-align: justify;">{{$t('Sr')}} {{client.name}} {{$t('NIF')}} {{client.fi}} {{$t('Home')}} {{client.street}}, {{client.city}}.</p>
|
|
|
|
<h4 style="text-align: center;margin-top: 10%;">{{$t('Agree') | uppercase}}</h4>
|
|
|
|
<p style="margin-top: 8%;text-align: justify;">{{$t('Date')}} {{client.payed | date('%d-%m-%Y')}} {{$t('Compensate')}} {{client.amountPaid}} € {{$t('From client')}} {{client.name}} {{$t('To client')}} {{company.name}}.</p>
|
|
|
|
<p style="margin-top: 8%;">{{$t('Reception')}} <span style="color:blue">administracion@verdnatura.es</span></p>
|
|
|
|
<div style="margin-top: 8%;"><small >{{$t('Greetings')}}</small></div>
|
2022-10-28 12:49:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- Footer block -->
|
|
|
|
<report-footer id="pageFooter"
|
|
|
|
v-bind="$props">
|
|
|
|
</report-footer>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|