salix/print/templates/reports/credit-request/credit-request.html

135 lines
5.0 KiB
HTML
Raw Permalink Normal View History

2022-11-10 09:38:54 +00:00
<report-body v-bind="$props">
2022-11-10 07:57:42 +00:00
<div class="grid-row info-panel">
<div class="grid-block">
<h1 class="title centered uppercase">{{$t('fields.title')}}</h1>
</div>
</div>
<table>
<tbody>
<tr>
<td style="width: 70%; text-align: right; padding-right: 2em">{{$t('fields.date')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
2024-03-22 14:00:30 +00:00
<tr>
2024-04-03 05:23:36 +00:00
<td style="width: 70%; text-align: right;">{{$t('fields.importCredit')}}:
2024-03-22 14:00:30 +00:00
<th colspan="3">
2024-04-03 05:23:36 +00:00
<input/>
2024-03-22 14:00:30 +00:00
</th>
</tr>
2022-11-10 07:57:42 +00:00
</tbody>
</table>
<div class="grid-row">
<div class="grid-block">
<div class="info-panel">
<div class="green-background">
<h3>{{$t('fields.companyInfo')}}</h3>
</div>
<div class="body">
<table style="width: 100%">
<tbody>
<tr>
<td>{{$t('fields.companyName')}}:</td>
<th colspan="3">
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
<tr>
<td>{{$t('fields.businessType')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
<td>{{$t('fields.antiquity')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
<tr>
<td>{{$t('fields.surface')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
<td>{{$t('fields.numberOfEmployees')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
<tr>
<td>{{$t('fields.owner')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
<td>{{$t('fields.phone')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
<tr>
<td>{{$t('fields.payer')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
<td>{{$t('fields.phone')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="grid-row">
<div class="grid-block">
<div class="info-panel" style="width: 98%">
<div class="green-background">
<h3>{{$t('fields.economicInfo')}}</h3>
</div>
<div class="body">
<table>
<tbody>
<tr class="row-oriented">
2024-04-03 05:23:36 +00:00
<td>{{$t('fields.previousSellsVolume')}}:</td>
2022-11-10 07:57:42 +00:00
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
<tr class="row-oriented">
<td>{{$t('fields.forecastedSalesVolume')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="grid-row">
<div class="grid-block">
<div>
2022-11-10 09:38:54 +00:00
<table style="border-top: 1px solid #ddd" class="info-panel">
2022-11-10 07:57:42 +00:00
<tbody>
<tr class="row-oriented" style="width: 100%">
<td>{{$t('fields.personFilling')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
<td>{{$t('fields.phone')}}:</td>
<th>
2024-04-03 05:23:36 +00:00
<input/>
2022-11-10 07:57:42 +00:00
</th>
</tr>
</tbody>
</table>
</div>
</div>
</div>
2022-11-10 09:38:54 +00:00
<template v-slot:footer>
2023-01-23 12:15:30 +00:00
<report-footer id="pageFooter" v-bind:left-text="formatDate(new Date(), '%d-%m-%Y')" v-bind="$props"> </report-footer>
2022-11-10 09:38:54 +00:00
</template>
</report-body>