1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-26 15:54:17 +01:00
openstamanager/templates/scadenzario/top.php
Thomas Zilio 7eda6ad01b Miglioramento stampe Scadenzario e Registro IVA
Fix #622, riferimento a #537.
Aggiunto supporto a stampe "a pezzi" per ridurre l'utilizzo della memoria.
2019-07-09 16:43:08 +02:00

24 lines
909 B
PHP

<?php
include_once __DIR__.'/../../core.php';
echo '
<h4><b>'.tr('Scadenze dal _START_ al _END_', [
'_START_' => Translator::dateToLocale($date_start),
'_END_' => Translator::dateToLocale($date_end),
], ['upper' => true]).'</b></h4>
<table class="table table-striped table-bordered" id="contents">
<thead>
<tr>
<th width="10%">'.tr('Documento', [], ['upper' => true]).'</th>
<th width="30%">'.tr('Anagrafica', [], ['upper' => true]).'</th>
<th width="30%">'.tr('Tipo di pagamento', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Data scadenza', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Importo', [], ['upper' => true]).'</th>
<th width="10%" class="text-center">'.tr('Già pagato', [], ['upper' => true]).'</th>
</tr>
</thead>
<tbody>';