2019-07-09 16:43:08 +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/>.
|
|
|
|
*/
|
2019-07-09 16:43:08 +02:00
|
|
|
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
|
2022-03-11 09:51:46 +01:00
|
|
|
if ($numero != $record['numero']) {
|
|
|
|
$different = 1;
|
|
|
|
}
|
|
|
|
|
2019-07-09 16:43:08 +02:00
|
|
|
echo '
|
2020-10-09 18:08:24 +02:00
|
|
|
<tr>';
|
2019-07-09 16:43:08 +02:00
|
|
|
|
|
|
|
echo '
|
2022-03-11 09:51:46 +01:00
|
|
|
<td>'.($different ? $record['numero'] : '').'</td>
|
|
|
|
<td>'.($different ? Translator::datetoLocale($record['data_registrazione']) : '').'</td>
|
|
|
|
<td>'.($different ? $record['numero_esterno'] : '').'</td>
|
|
|
|
<td>'.($different ? Translator::datetoLocale($record['data']) : '').'</td>
|
|
|
|
<td>'.($different ? $record['codice_tipo_documento_fe'] : '').'</td>
|
|
|
|
<td>'.($different ? $record['codice_anagrafica'].' / '.safe_truncate(mb_strtoupper(html_entity_decode($record['ragione_sociale']), 'UTF-8'), 50) : '').'</td>
|
2020-10-09 18:08:24 +02:00
|
|
|
<td class="text-right">'.moneyFormat($record['totale']).'</td>';
|
2019-07-09 16:43:08 +02:00
|
|
|
|
2020-10-09 18:08:24 +02:00
|
|
|
echo '
|
|
|
|
<td class="text-right">'.moneyFormat($record['subtotale']).'</td>
|
|
|
|
<td class="text-left">'.Translator::numberToLocale($record['percentuale'], 0).'</td>
|
|
|
|
<td class="text-left">'.$record['desc_iva'].'</td>
|
|
|
|
<td class="text-right">'.moneyFormat($record['iva']).'</td>
|
|
|
|
</tr>';
|
2019-07-09 16:43:08 +02:00
|
|
|
|
|
|
|
$iva[$record['desc_iva']][] = $record['iva'];
|
|
|
|
$totale[$record['desc_iva']][] = $record['subtotale'];
|
2022-03-11 09:51:46 +01:00
|
|
|
|
|
|
|
$numero = $record['numero'];
|
|
|
|
$data_registrazione = $record['data_registrazione'];
|
|
|
|
$numero_esterno = $record['numero'];
|
|
|
|
$data = $record['data'];
|
|
|
|
$codice_fe = $record['numero'];
|
|
|
|
$codice_anagrafica = $record['numero'];
|
|
|
|
|
|
|
|
$different = 0;
|