.
*/
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('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).' |