.
*/
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);
$somma_km = sum($somma_km);
if (setting('Formato ore in stampa') == 'Sessantesimi') {
$somma_ore = Translator::numberToHours($somma_ore);
} else {
$somma_ore = Translator::numberToLocale($somma_ore, 2);
}
echo '
|
'.tr('Totale', [], ['upper' => true]).':
| ';
if( get('id_print')!=24 ){
echo '
'.($somma_km).'';
}
echo '
| '.($pricing ? $somma_ore : '-').' |
'.($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) : '-').' |
';