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

59 lines
2.3 KiB
HTML
Raw Normal View History

2022-11-10 07:57:42 +00:00
<report-body>
<report-header v-bind="$props"></report-header>
<div class="grid-row">
<div class="grid-block">
<p v-html="$t('description', {
socialName: client.socialName,
name: client.name,
address: client.street,
country: client.country,
fiscalID: client.fi
})"></p>
<p v-html="$t('declaration', {
socialName: client.socialName
})"></p>
<p v-for="(declaration, $index) in $t('declarations')" v-html="$t('declarations[' + $index + ']', {
companyName: company.name,
companyCity: company.city,
socialName: client.socialName,
destinationCountry: client.country
})">
</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>
<p>
<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>
</p>
</div>
<div class="size50 signature centered">
<p>{{ company.name }}</p>
<img v-bind:src="getReportSrc('signature.png')">
<p>
<div>{{company.manager}}</div>
<div>{{$t('manager')}}</div>
</p>
</div>
</div>
</div>
</div>
<report-footer id="pageFooter" v-bind:left-text="$t('client', [client.id])" v-bind="$props">
</report-footer>
</report-body>