. */ include_once __DIR__.'/../../core.php'; $totale_iva = sum(array_column($records, 'iva')); $totale_subtotale = sum(array_column($records, 'subtotale')); echo '

'.tr('Riepilogo IVA', [], ['upper' => true]).'

'; foreach ($iva as $descrizione => $tot_iva) { if (!empty($descrizione)) { $somma_iva = sum($iva[$descrizione]); $somma_totale = sum($totale[$descrizione]); echo ' '; } } echo '
'.tr('Iva').' '.tr('Imponibile').' '.tr('Imposta').'
'.$descrizione.' '.moneyFormat($somma_totale).' '.moneyFormat($somma_iva).'
'.tr('Totale', [], ['upper' => true]).': '.moneyFormat($totale_subtotale).' '.moneyFormat($totale_iva).'
';