salix/print/templates/reports/claim-pickup-order/claim-pickup-order.html

91 lines
4.0 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2019-10-31 11:43:04 +00:00
<html v-bind:lang="locale">
<body>
<section class="container">
2019-02-06 09:53:12 +00:00
<!-- Header component -->
2019-10-31 11:43:04 +00:00
<report-header
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</report-header>
2019-02-06 09:53:12 +00:00
<!-- End header component -->
<section class="main">
2019-01-28 11:28:22 +00:00
<section class="columns">
<section class="size50">
<section class="size75">
<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>
2019-10-31 11:43:04 +00:00
<th>{{client.id}}</th>
2019-02-04 09:10:57 +00:00
</tr>
<tr>
<td class="font gray uppercase">{{$t('date')}}</td>
2019-10-31 11:43:04 +00:00
<th>{{currentDate}}</th>
2019-02-04 09:10:57 +00:00
</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>
<section class="body">
2019-10-31 11:43:04 +00:00
<h3 class="uppercase">{{client.nickname}}</h3>
<section>
2019-10-31 11:43:04 +00:00
{{client.street}}
</section>
<section>
2019-10-31 11:43:04 +00:00
{{client.postalCode}}, {{client.city}} ({{client.province}})
</section>
<section>
2019-10-31 11:43:04 +00:00
{{client.country}}
</section>
2019-01-28 11:28:22 +00:00
</section>
</section>
</section>
</section>
2019-02-04 09:10:57 +00:00
<table class="column-oriented">
<thead>
<tr>
<th>{{$t('reference')}}</th>
<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>
2019-10-31 11:43:04 +00:00
<tr v-for="sale in sales" v-bind:key="sale.id">
2019-02-04 09:10:57 +00:00
<td class="font gray">{{sale.id}}</td>
<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>
<section class="panel sign">
<section class="header">{{$t('clientSignature')}}</section>
<section class="body centered">
2019-10-31 11:43:04 +00:00
<h3>{{client.name}}</h3>
2019-01-28 11:28:22 +00:00
</section>
</section>
<p v-html="$t('sections.agency.description')"></p>
</section>
2019-02-06 09:53:12 +00:00
<!-- Footer component -->
<report-footer id="pageFooter"
2019-10-31 11:43:04 +00:00
v-bind:left-text="$t('claim', [claimId])"
v-bind:center-text="client.name"
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</report-footer>
2019-02-06 09:53:12 +00:00
<!-- End footer component -->
</section>
</body>
</html>