2019-01-24 14:03:01 +00:00
|
|
|
<!DOCTYPE html>
|
2020-05-20 14:23:53 +00:00
|
|
|
<html v-bind:lang="$i18n.locale">
|
2019-01-24 14:03:01 +00:00
|
|
|
<body>
|
2019-11-11 10:04:49 +00:00
|
|
|
<table class="grid">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<!-- Header block -->
|
2020-07-02 14:07:26 +00:00
|
|
|
<report-header v-bind="$props"></report-header>
|
2019-11-11 10:04:49 +00:00
|
|
|
<!-- Block -->
|
|
|
|
<div class="grid-row">
|
|
|
|
<div class="grid-block">
|
|
|
|
<div class="columns">
|
|
|
|
<div class="size50">
|
2020-12-16 10:40:51 +00:00
|
|
|
<h1 class="title uppercase">{{$t('title')}}</h1>
|
|
|
|
<table class="row-oriented">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('claimId')}}</td>
|
2022-09-30 11:54:20 +00:00
|
|
|
<th>{{id}}</th>
|
2020-12-16 10:40:51 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('clientId')}}</td>
|
|
|
|
<th>{{client.id}}</th>
|
|
|
|
</tr>
|
2021-12-22 11:52:14 +00:00
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('phone')}}</td>
|
|
|
|
<th>{{client.phone}}</th>
|
|
|
|
</tr>
|
2020-12-16 10:40:51 +00:00
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('date')}}</td>
|
|
|
|
<th>{{dated}}</th>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-11-11 10:04:49 +00:00
|
|
|
</div>
|
|
|
|
<div class="size50">
|
|
|
|
<div class="panel">
|
|
|
|
<div class="header">{{$t('clientData')}}</div>
|
|
|
|
<div class="body">
|
|
|
|
<h3 class="uppercase">{{client.nickname}}</h3>
|
|
|
|
<div>
|
|
|
|
{{client.street}}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{{client.postalCode}}, {{client.city}} ({{client.province}})
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{{client.country}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-07-25 12:49:39 +00:00
|
|
|
|
2021-01-18 07:33:20 +00:00
|
|
|
<table class="column-oriented vn-mt-ml">
|
2019-11-11 10:04:49 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('reference')}}</th>
|
|
|
|
<th class="number">{{$t('quantity')}}</th>
|
|
|
|
<th class="number">{{$t('claims')}}</th>
|
2020-03-05 12:56:45 +00:00
|
|
|
<th width="50%">{{$t('concept')}}</th>
|
2019-11-11 10:04:49 +00:00
|
|
|
</tr>
|
|
|
|
</thead>
|
2020-03-03 12:22:36 +00:00
|
|
|
<tbody v-for="sale in sales" v-bind:key="sale.id">
|
|
|
|
<tr>
|
2019-11-11 10:04:49 +00:00
|
|
|
<td class="font gray">{{sale.id}}</td>
|
|
|
|
<td class="number">{{sale.quantity}}</td>
|
|
|
|
<td class="number">{{sale.claimQuantity}}</td>
|
2020-03-05 12:56:45 +00:00
|
|
|
<td width="50%">{{sale.concept}}</td>
|
2019-11-11 10:04:49 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-07-25 12:49:39 +00:00
|
|
|
|
2019-11-11 10:04:49 +00:00
|
|
|
<div class="panel sign">
|
|
|
|
<div class="header">{{$t('clientSignature')}}</div>
|
|
|
|
<div class="body centered">
|
|
|
|
<h3>{{client.name}}</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- Footer block -->
|
2020-07-02 14:07:26 +00:00
|
|
|
<report-footer id="pageFooter"
|
2022-09-30 11:54:20 +00:00
|
|
|
v-bind:left-text="$t('claim', [id])"
|
2020-07-02 14:07:26 +00:00
|
|
|
v-bind:center-text="client.name"
|
|
|
|
v-bind="$props">
|
|
|
|
</report-footer>
|
2019-11-11 10:04:49 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-01-24 14:03:01 +00:00
|
|
|
</body>
|
2022-07-25 12:49:39 +00:00
|
|
|
</html>
|