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

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

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