openstamanager/templates/ddt/header.php

143 lines
4.5 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
2024-05-23 16:05:30 +02:00
if ($options['hide-header']) {
echo '
<!-- Intestazione vuota fornitore -->
<div class="row" style="height:111px;">
<div class="col-xs-6">
</div>
<div class="col-xs-6 text-right">
</div>
</div>';
} else {
echo '
<!-- Intestazione fornitore -->
$default_header$';
}
2017-09-08 17:03:47 +02:00
echo '
<div class="row">
2024-05-23 16:05:30 +02:00
<!-- Dati Ordine -->
<div class="col-xs-5">
<div class="text-center" style="height:5mm;">
<b>$tipo_doc$</b>
</div>
<br>
2017-09-08 17:03:47 +02:00
2024-05-23 16:05:30 +02:00
<table class="table">
2017-09-08 17:03:47 +02:00
<tr>
2024-05-23 16:05:30 +02:00
<td valign="top" class="border-bottom border-top text-center">
<p class="small-bold text-muted">'.tr('Nr. documento', [], ['upper' => true]).'</p>
<p>$numero$</p>
2017-09-08 17:03:47 +02:00
</td>
2024-05-23 16:05:30 +02:00
<td class="border-bottom border-top text-center">
<p class="small-bold text-muted">'.tr('Data documento', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>$data$</p>
</td>
2024-05-23 16:05:30 +02:00
<td class="border-bottom border-top center text-center">
<p class="small-bold text-muted">'.tr('Foglio', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
<p>{PAGENO}/{nb}</p>
</td>
</tr>
2024-05-23 16:05:30 +02:00
</table>
</div>
2020-09-07 15:04:06 +02:00
2024-05-23 16:05:30 +02:00
<!-- Dati Cliente/Fornitore -->
<div class="col-xs-6 pull-right">
<table class="table border-bottom" >
<tr>
<td colspan=2>
<p class="small-bold text-muted">'.tr('Spett.le', [], ['upper' => true]).'</p>
<p>$c_ragionesociale$</p>
<p>$c_indirizzo$<br> $c_citta_full$</p>
<p>$c_telefono$ $c_cellulare$</p>';
if (empty($destinazione)) {
echo '
2019-07-12 12:56:46 +02:00
<tr>
2024-05-23 16:05:30 +02:00
<td>
<p class="small-bold text-muted">'.tr('Codice destinatario', [], ['upper' => true]).'</p>
</td>
<td class="text-right">
<small>'.$c_codice_destinatario.'</small>
</td>
</tr>';
}
echo '
2019-07-12 12:56:46 +02:00
</td>
</tr>
2020-09-07 15:04:06 +02:00
2017-09-08 17:03:47 +02:00
<tr>
2024-05-23 16:05:30 +02:00
<td>
<p class="small-bold text-muted">'.tr('Partita IVA', [], ['upper' => true]).'</p>
2017-09-08 17:03:47 +02:00
</td>
2024-05-23 16:05:30 +02:00
<td class="text-right">
<small>$c_piva$</small>
2017-09-08 17:03:47 +02:00
</td>
</tr>
<tr>
2024-05-23 16:05:30 +02:00
<td >
<p class="small-bold text-muted">'.tr('Codice fiscale', [], ['upper' => true]).'</p>
</td>
<td class="text-right">
<small>$c_codicefiscale$</small>
2017-09-08 17:03:47 +02:00
</td>
</tr>
<tr>
<td class="border-bottom">
<p class="small-bold text-muted">'.tr('Partenza merce', [], ['upper' => true]).'</p>
</td>
<td class="border-bottom text-right">
<p><small>'.$partenza.'</small></p>
</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>
2024-05-23 16:05:30 +02:00
<td class="border-bottom">
<p class="small-bold text-muted">'.tr('Destinazione diversa', [], ['upper' => true]).'</p>
</td>
<td class="border-bottom text-right">
<p><small>'.$destinazione.'</small></p>
2017-09-08 17:03:47 +02:00
</td>
2019-07-11 15:05:36 +02:00
</tr>';
2024-05-24 09:17:38 +02:00
if ($codice_destinatario) {
echo '
<tr>
2024-05-23 16:05:30 +02:00
<td>
<p class="small-bold text-muted">'.tr('Codice destinatario', [], ['upper' => true]).'</p>
</td>
<td class="text-right">
<small>'.$codice_destinatario.'</small>
</td>
</tr>';
2024-05-24 09:17:38 +02:00
}
}
2019-07-11 15:05:36 +02:00
echo '
2017-09-08 17:03:47 +02:00
</table>
</div>
</div>';