salix/print/templates/reports/balance-compensation/balance-compensation.html

32 lines
1.8 KiB
HTML
Raw Normal View History

2022-11-10 09:38:54 +00:00
<report-body v-bind="$props">
2022-11-10 06:48:24 +00:00
<div class="grid-row">
<div class="grid-block">
<div class="columns">
<div class="size50">
2023-01-23 12:15:30 +00:00
<p style="text-align: right">{{$t('Place')}} {{formatDate(new Date(), '%d-%m-%Y')}}</p>
2022-11-10 09:38:54 +00:00
<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">
{{receipt.supplier().name}} {{$t('CIF')}} {{receipt.supplier().nif}} {{$t('Home')}} {{receipt.supplier().street}},
{{receipt.supplier().city}}.
2022-11-10 09:38:54 +00:00
</p>
<p style="margin-top: 5%">{{$t('In other hand')}}:</p>
<p style="text-align: justify">
{{$t('Sr')}} {{receipt.client().name}} {{$t('NIF')}} {{receipt.client().fi}} {{$t('Home')}} {{receipt.client().street}},
{{receipt.client().city}}.
2022-11-10 09:38:54 +00:00
</p>
<h4 style="text-align: center; margin-top: 10%">{{$t('Agree') | uppercase}}</h4>
<p style="margin-top: 8%; text-align: justify">
{{$t('Date')}} {{formatDate(receipt.payed, '%d-%m-%Y')}} {{$t('Compensate')}} {{receipt.amountPaid}} €
{{$t('From client')}} {{receipt.client().name}} {{$t('Against the balance of')}}: {{receipt.description}}.
2022-11-10 09:38:54 +00:00
</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-11-10 06:48:24 +00:00
</div>
</div>
</div>
</div>
</report-body>