salix/print/templates/reports/incoterms-authorization/incoterms-authorization.html

63 lines
2.3 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">
2022-11-10 09:38:54 +00:00
<p
v-html="$t('description', {
2022-11-10 07:57:42 +00:00
socialName: client.socialName,
name: client.name,
address: client.street,
country: client.country,
fiscalID: client.fi
2022-11-10 09:38:54 +00:00
})"
></p>
<p
v-html="$t('declaration', {
2022-11-10 07:57:42 +00:00
socialName: client.socialName
2022-11-10 09:38:54 +00:00
})"
></p>
<p
v-for="(declaration, $index) in $t('declarations')"
v-html="$t('declarations[' + $index + ']', {
2022-11-10 07:57:42 +00:00
companyName: company.name,
companyCity: company.city,
socialName: client.socialName,
2023-09-21 11:15:00 +00:00
destinationCountry: client.country,
incotermsFk: address.incotermsFk
2022-11-10 09:38:54 +00:00
})"
></p>
2021-12-13 07:23:44 +00:00
2022-11-10 07:57:42 +00:00
<div class="columns">
<div class="size50 signature">
<p class="centered">{{client.name}}</p>
<div class="dummy-signature centered"></div>
<table>
<tbody>
<tr>
<td>{{$t('signer.representative')}}:</td>
<td></td>
</tr>
<tr>
<td>{{$t('signer.representativeRole')}}:</td>
<td></td>
</tr>
<tr>
<td>{{$t('signer.signed')}}:</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="size50 signature centered">
<p>{{ company.name }}</p>
2022-11-10 09:38:54 +00:00
<img v-bind:src="getReportSrc('signature.png')" />
2022-11-10 07:57:42 +00:00
<div>{{company.manager}}</div>
<div>{{$t('manager')}}</div>
</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="$props"></report-footer>
</template>
</report-body>