2022-11-10 09:38:54 +00:00
|
|
|
<report-body v-bind="$props">
|
|
|
|
<template v-slot:header>
|
|
|
|
<report-header v-bind="$props" v-bind:company-code="invoice.companyCode"></report-header>
|
|
|
|
</template>
|
2022-11-10 07:57:42 +00:00
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
|
|
|
<div class="columns vn-mb-lg">
|
|
|
|
<div class="size50">
|
|
|
|
<div class="size75 vn-mt-ml">
|
|
|
|
<h1 class="title uppercase">{{$t('title')}}</h1>
|
|
|
|
<table class="row-oriented ticket-info">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('clientId')}}</td>
|
|
|
|
<th>{{client.id}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('invoice')}}</td>
|
|
|
|
<th>{{invoice.ref}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('date')}}</td>
|
|
|
|
<th>{{invoice.issued | date('%d-%m-%Y')}}</th>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="size50">
|
|
|
|
<div class="panel">
|
|
|
|
<div class="header">{{$t('invoiceData')}}</div>
|
|
|
|
<div class="body">
|
|
|
|
<h3 class="uppercase">{{client.socialName}}</h3>
|
2022-11-10 09:38:54 +00:00
|
|
|
<div>{{client.postalAddress}}</div>
|
|
|
|
<div>{{client.postcodeCity}}</div>
|
|
|
|
<div>{{$t('fiscalId')}}: {{client.fi}}</div>
|
2021-03-01 10:25:37 +00:00
|
|
|
</div>
|
2022-11-10 07:57:42 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="incoterms" class="panel">
|
|
|
|
<div class="header">{{$t('incotermsTitle')}}</div>
|
|
|
|
<div class="body">
|
|
|
|
<table class="row-oriented">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
2022-11-10 09:38:54 +00:00
|
|
|
<th>{{$t('incoterms')}}</th>
|
2022-11-10 07:57:42 +00:00
|
|
|
<td>{{incoterms.incotermsFk}} - {{incoterms.incotermsName}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2022-11-10 09:38:54 +00:00
|
|
|
<th>{{$t('productDescription')}}</th>
|
2022-11-10 07:57:42 +00:00
|
|
|
<td>{{incoterms.intrastat}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('expeditionDescription')}}</th>
|
|
|
|
<td></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('packageNumber')}}</th>
|
|
|
|
<td>{{incoterms.packages}}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('packageGrossWeight')}}</th>
|
|
|
|
<td>{{incoterms.weight}} KG</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('packageCubing')}}</th>
|
|
|
|
<td>{{incoterms.volume}} m3</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<div class="font bold">
|
|
|
|
<span>{{$t('customsInfo')}}</span>
|
|
|
|
<span>{{incoterms.customsAgentName}}</span>
|
|
|
|
</div>
|
|
|
|
<div class="font bold">
|
|
|
|
<span>(</span>
|
|
|
|
<span>{{incoterms.customsAgentNif}}</span>
|
|
|
|
<span>{{incoterms.customsAgentStreet}}</span>
|
2022-11-10 09:38:54 +00:00
|
|
|
<span v-if="incoterms.customsAgentPhone"> ☎ {{incoterms.customsAgentPhone}} </span>
|
|
|
|
<span v-if="incoterms.customsAgentEmail"> ✉ {{incoterms.customsAgentEmail}} </span>
|
2022-11-10 07:57:42 +00:00
|
|
|
<span>)</span>
|
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<strong>{{$t('productDisclaimer')}}</strong>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-11-10 09:38:54 +00:00
|
|
|
<template v-slot:footer> </template>
|
|
|
|
</report-body>
|