openstamanager/templates/ddt/header.php

107 lines
3.8 KiB
PHP
Raw Normal View History

2017-09-08 17:03:47 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2017-09-08 17:03:47 +02:00
echo '
<!-- Intestazione fornitore -->
$default_header$
2017-09-08 17:03:47 +02:00
<div class="row">
<!-- Dati Ddt -->
2017-09-08 17:03:47 +02:00
<div class="col-xs-6">
<div class="text-center" style="height:5mm;">
2019-07-12 12:40:13 +02:00
<b>'.tr('DDT').'</b>
2017-09-08 17:03:47 +02:00
</div>
<table class="table">
<tr>
<td valign="top" class="border-full text-center">
<p class="small-bold">'.tr('Nr. documento', [], ['upper' => true]).'</p>
<p>$numero$</p>
2017-09-08 17:03:47 +02:00
</td>
<td class="border-right border-bottom border-top text-center">
<p class="small-bold">'.tr('Data documento', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>$data$</p>
</td>
<td class="border-right border-bottom border-top text-center">
2023-05-18 16:11:27 +02:00
<p class="small-bold">'.tr('_TYPE_', ['_TYPE_' => $documento->direzione == 'uscita' ? 'Fornitore' : 'Cliente'], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>$c_codice$</p>
</td>
<td class="border-right border-bottom border-top center text-center">
<p class="small-bold">'.tr('Foglio', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>{PAGENO}/{nb}</p>
</td>
</tr>
2020-09-07 15:04:06 +02:00
2019-07-12 12:56:46 +02:00
<tr>
<td colspan="4" style="height:11mm;">
<p class="small-bold">'.tr('Pagamento', [], ['upper' => true]).'</p>
<p>$pagamento$</p>
</td>
</tr>
2020-09-07 15:04:06 +02:00
2017-09-08 17:03:47 +02:00
<tr>
2019-07-12 12:56:46 +02:00
<td colspan="2">
<p class="small-bold">'.tr('Partita IVA', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<small>$c_piva$</small>
</td>
2019-07-12 12:56:46 +02:00
<td colspan="2">
<p class="small-bold">'.tr('Codice fiscale', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<small>$c_codicefiscale$</small>
</td>
</tr>
</table>
</div>
2019-07-12 12:56:46 +02:00
<div class="col-xs-6" style="margin-left: 10px">
2017-09-08 17:03:47 +02:00
<table class="table" style="width:100%;margin-top:5mm;">
<tr>
<td class="border-full" style="height:20mm;">
<p class="small-bold">'.tr('Spett.le', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>$c_ragionesociale$</p>
<p>$c_indirizzo$<br>$c_citta_full$</p>
2017-09-08 17:03:47 +02:00
</td>
2019-07-11 15:05:36 +02:00
</tr>';
2017-09-08 17:03:47 +02:00
2019-07-11 15:05:36 +02:00
if (!empty($destinazione)) {
echo '
2017-09-08 17:03:47 +02:00
<tr>
<td class="border-full" style="height:16mm;">
2019-07-11 17:20:58 +02:00
<p class="small-bold">'.tr('Destinazione diversa', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<small>$c_destinazione$</small>
</td>
2019-07-11 15:05:36 +02:00
</tr>';
}
if (!empty($partenza)) {
echo '
<tr>
<td class="border-full" style="height:16mm;">
<p class="small-bold">'.tr('Partenza merce', [], ['upper' => true]).'</p>
<small>$c_partenza$</small>
</td>
</tr>';
}
2019-07-11 15:05:36 +02:00
echo '
2017-09-08 17:03:47 +02:00
</table>
</div>
</div>';