37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
include_once __DIR__.'/../../core.php';
|
||
|
|
||
|
echo '
|
||
|
<tr>';
|
||
|
|
||
|
$previous_number = $previous_number ?: null;
|
||
|
if ($record['numero'] == $previous_number) {
|
||
|
echo '
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td></td>
|
||
|
<td></td>';
|
||
|
} else {
|
||
|
echo '
|
||
|
<td>'.(($dir == 'uscita') ? $record['numero'] : '-').'</td>
|
||
|
<td>'.$record['numero_esterno'].'</td>
|
||
|
<td>'.Translator::numbertoLocale($record['data']).'</td>
|
||
|
<td>'.$record['codice_tipo_documento_fe'].'</td>
|
||
|
<td>'.$record['codice_anagrafica'].' / '.tr($record['ragione_sociale'], [], ['upper' => true]).'</td>
|
||
|
<td>'.moneyFormat($record['totale']).'</td>';
|
||
|
}
|
||
|
|
||
|
echo '
|
||
|
<td class="text-right">'.moneyFormat($record['subtotale']).'</td>
|
||
|
<td class="text-center">'.Translator::numberToLocale($record['percentuale'], 0).'</td>
|
||
|
<td class="text-center">'.$record['desc_iva'].'</td>
|
||
|
<td class="text-right">'.moneyFormat($record['iva']).'</td>
|
||
|
</tr>';
|
||
|
|
||
|
$previous_number = $record['numero'];
|
||
|
|
||
|
$iva[$record['desc_iva']][] = $record['iva'];
|
||
|
$totale[$record['desc_iva']][] = $record['subtotale'];
|