.
*/
include_once __DIR__.'/../../core.php';
$somma_ore = sum($somma_ore);
$somma_imponibile = sum($somma_imponibile);
$somma_sconto = sum($somma_sconto);
$somma_totale_imponibile = sum($somma_totale_imponibile);
$somma_iva = sum($somma_iva);
$somma_totale_ivato = sum($somma_totale_ivato);
echo '
|
'.tr('Totale', [], ['upper' => true]).':
|
'.($pricing ? numberFormat($somma_ore, 2) : '-').' |
'.($pricing ? moneyFormat($somma_imponibile, 2) : '-').' |
'.($pricing ? moneyFormat($somma_sconto, 2) : '-').' |
'.($pricing ? moneyFormat($somma_totale_imponibile, 2) : '-').' |
|
'.tr('Iva', [], ['upper' => true]).':
|
|
'.($pricing ? moneyFormat($somma_iva, 2) : '-').' |
|
'.tr('Totale Ivato', [], ['upper' => true]).':
|
|
'.($pricing ? moneyFormat($somma_totale_ivato, 2) : '-').' |
';