2019-01-24 14:03:01 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="es">
|
|
|
|
<body>
|
|
|
|
<section class="container">
|
2019-02-06 09:53:12 +00:00
|
|
|
<!-- Header component -->
|
2019-02-11 09:06:26 +00:00
|
|
|
<report-header :locale="locale"></report-header>
|
2019-02-06 09:53:12 +00:00
|
|
|
<!-- End header component -->
|
2019-01-24 14:03:01 +00:00
|
|
|
<section class="main">
|
2019-01-28 11:28:22 +00:00
|
|
|
<section class="columns">
|
|
|
|
<section class="size50">
|
|
|
|
<section class="size75">
|
2019-01-31 10:44:03 +00:00
|
|
|
<h1 class="title uppercase">{{$t('title')}}</h1>
|
2019-02-04 09:10:57 +00:00
|
|
|
<table class="row-oriented">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('claimId')}}</td>
|
|
|
|
<th>{{claimId}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('clientId')}}</td>
|
|
|
|
<th>{{clientId}}</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="font gray uppercase">{{$t('date')}}</td>
|
|
|
|
<th>{{dated()}}</th>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-01-28 11:28:22 +00:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
<section class="size50">
|
|
|
|
<section class="panel">
|
|
|
|
<section class="header">{{$t('clientData')}}</section>
|
2019-01-31 10:44:03 +00:00
|
|
|
<section class="body">
|
2019-09-24 10:08:21 +00:00
|
|
|
<h3 class="uppercase">{{nickname}}</h3>
|
2019-01-31 10:44:03 +00:00
|
|
|
<section>
|
|
|
|
{{street}}
|
|
|
|
</section>
|
|
|
|
<section>
|
2019-09-24 10:08:21 +00:00
|
|
|
{{postalCode}}, {{city}} ({{province}})
|
2019-01-31 10:44:03 +00:00
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
{{country}}
|
|
|
|
</section>
|
2019-01-28 11:28:22 +00:00
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
</section>
|
|
|
|
</section>
|
2019-01-24 14:03:01 +00:00
|
|
|
|
2019-02-04 09:10:57 +00:00
|
|
|
<table class="column-oriented">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{$t('reference')}}</th>
|
2019-02-11 09:06:26 +00:00
|
|
|
<th class="number">{{$t('quantity')}}</th>
|
|
|
|
<th class="number">{{$t('claims')}}</th>
|
2019-02-04 09:10:57 +00:00
|
|
|
<th>{{$t('concept')}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="sale in sales" :key="sale.id">
|
|
|
|
<td class="font gray">{{sale.id}}</td>
|
2019-02-11 09:06:26 +00:00
|
|
|
<td class="number">{{sale.quantity}}</td>
|
|
|
|
<td class="number">{{sale.claimQuantity}}</td>
|
2019-02-04 09:10:57 +00:00
|
|
|
<td>{{sale.concept}}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2019-01-24 14:03:01 +00:00
|
|
|
|
2019-01-31 10:44:03 +00:00
|
|
|
<section class="panel sign">
|
2019-02-11 09:06:26 +00:00
|
|
|
<section class="header">{{$t('clientSignature')}}</section>
|
2019-01-31 10:44:03 +00:00
|
|
|
<section class="body centered">
|
|
|
|
<h3>{{clientName}}</h3>
|
2019-01-28 11:28:22 +00:00
|
|
|
</section>
|
|
|
|
</section>
|
2019-01-31 10:44:03 +00:00
|
|
|
|
2019-01-24 14:03:01 +00:00
|
|
|
<p v-html="$t('sections.agency.description')"></p>
|
|
|
|
</section>
|
2019-02-06 09:53:12 +00:00
|
|
|
<!-- Footer component -->
|
2019-01-24 14:03:01 +00:00
|
|
|
<report-footer id="pageFooter"
|
|
|
|
:left-text="$t('claim', [claimId])"
|
2019-02-05 06:58:05 +00:00
|
|
|
:center-text="clientName"
|
|
|
|
:locale="locale">
|
2019-01-24 14:03:01 +00:00
|
|
|
</report-footer>
|
2019-02-06 09:53:12 +00:00
|
|
|
<!-- End footer component -->
|
2019-01-24 14:03:01 +00:00
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|