. */ include_once __DIR__.'/../../core.php'; if ($dir == 'entrata') { $title = tr('Fatturato mensile dal _START_ al _END_', [ '_START_' => Translator::dateToLocale($date_start), '_END_' => Translator::dateToLocale($date_end), ], ['upper' => true]); } else { $title = tr('Acquisti mensili dal _START_ al _END_', [ '_START_' => Translator::dateToLocale($date_start), '_END_' => Translator::dateToLocale($date_end), ], ['upper' => true]); } echo '
'.tr('Mese').' | '.tr('Imponibile').' | '.tr('IVA').' | '.tr('Totale').' |
---|---|---|---|
'.$mese.' | '.moneyFormat($imponibile).' | '.moneyFormat($iva).' | '.moneyFormat($totale).' |
'.tr('Totale', [], ['upper' => true]).': | '.moneyFormat($totale_imponibile).' | '.moneyFormat($totale_iva).' | '.moneyFormat($totale_finale).' |