From 2516cc2aee63ddf8475babee6e44eac78c4e9c57 Mon Sep 17 00:00:00 2001 From: valentina Date: Tue, 15 Oct 2024 15:43:51 +0200 Subject: [PATCH] fix: template fatture con split payment --- templates/fatture/footer.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/fatture/footer.php b/templates/fatture/footer.php index 45f54c823..7c1555061 100755 --- a/templates/fatture/footer.php +++ b/templates/fatture/footer.php @@ -57,7 +57,7 @@ $peso_lordo = $documento->peso ?: $documento->peso_calcolato; $width = round(100 / ($show_sconto ? 5 : 3), 2); $has_rivalsa = !empty($rivalsa); -$has_ritenuta = !empty($record['ritenutaacconto']) || !empty($documento->totale_ritenuta_contributi) || !empty($record['split_payment']); +$has_ritenuta = !empty($record['ritenutaacconto']) || !empty($documento->totale_ritenuta_contributi); $has_split_payment = !empty($record['split_payment']); $has_sconto_finale = !empty($sconto_finale); @@ -246,7 +246,7 @@ echo " "; -if ($has_ritenuta || $show_sconto) { +if ($has_ritenuta || $show_sconto || $has_rivalsa) { echo " @@ -332,7 +332,7 @@ echo ' '.moneyFormat($totale_iva, $d_totali).' '; - if ($has_ritenuta || $show_sconto || $has_rivalsa) { + if ($has_ritenuta || $show_sconto || $has_rivalsa || $has_split_payment || $has_sconto_finale) { echo' '.moneyFormat($totale, $d_total); } else { @@ -432,8 +432,8 @@ if ($has_ritenuta) { * Totale IVA | Totale (+ Rivalsa INPS - Ritenuta - Totale IVA) */ if ($has_split_payment) { - $first_colspan = 1; - $second_colspan = 2; + $first_colspan = 2; + $second_colspan = 1; echo ' @@ -453,8 +453,8 @@ if ($has_split_payment) { '.moneyFormat($totale_iva, 2).' - - '.moneyFormat($totale, 2).' + + '.moneyFormat($totale, 2).' '; }