diff --git a/templates/fatture/body.php b/templates/fatture/body.php index c28a5d32c..37dfb28cc 100644 --- a/templates/fatture/body.php +++ b/templates/fatture/body.php @@ -9,7 +9,7 @@ $v_totale = []; $autofill = new \Util\Autofill(5, 40); $rows_per_page = $fattura_accompagnatoria ? 15 : 20; if (!empty($options['last-page-footer'])) { - $rows_per_page += 10; + $rows_per_page += 7; } $autofill->setRows($rows_per_page); diff --git a/templates/fatture/footer.php b/templates/fatture/footer.php index 1dac01326..5da47da35 100644 --- a/templates/fatture/footer.php +++ b/templates/fatture/footer.php @@ -250,9 +250,9 @@ if (!empty($record['ritenutaacconto']) || !empty($documento->totale_ritenuta_con echo ' '; if (empty($record['split_payment'])) { - echo tr('Netto a pagare', [], ['upper' => true]); + echo tr('Netto a pagare', [], ['upper' => true]); } else { - echo tr('Totale', [], ['upper' => true]); + echo tr('Totale', [], ['upper' => true]); } echo ' '; @@ -262,13 +262,13 @@ if (!empty($record['ritenutaacconto']) || !empty($documento->totale_ritenuta_con - '.moneyFormat(abs($documento->ritenuta_acconto) + $documento->totale_ritenuta_contributi, 2).' + '.moneyFormat(abs($documento->ritenuta_acconto) + abs($documento->totale_ritenuta_contributi), 2).' '; echo ' - '.moneyFormat($totale - abs($documento->ritenuta_acconto) - $documento->totale_ritenuta_contributi, 2).' + '.moneyFormat($netto_a_pagare, 2).' '; } @@ -281,7 +281,7 @@ if (!empty($record['split_payment'])) { echo ' - '.tr('iva a carico del destinatario', [], ['upper' => true]).' + '.tr('IVA a carico del destinatario', [], ['upper' => true]).' @@ -292,11 +292,11 @@ if (!empty($record['split_payment'])) { echo ' - '.moneyFormat($totale_iva, 2).' + '.moneyFormat($totale_iva, 2).' - '.moneyFormat($totale - $totale_iva - abs($documento->ritenuta_acconto) - $documento->totale_ritenuta_contributi, 2).' + '.moneyFormat($netto_a_pagare, 2).' '; }