From 4ecfab830820ad79561a13b9aa325fd7c665c7c4 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Thu, 13 Apr 2023 17:03:07 +0200 Subject: [PATCH] Fix minore #1281 --- templates/liquidazione_iva/body.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/liquidazione_iva/body.php b/templates/liquidazione_iva/body.php index ecd9f986e..8194a1767 100644 --- a/templates/liquidazione_iva/body.php +++ b/templates/liquidazione_iva/body.php @@ -44,7 +44,7 @@ $totale_iva_periodo_precedente = $totale_iva_vendite_periodo_precedente - $total $totale_iva = $totale_iva_esigibile - $totale_iva_detraibile; -if ($periodo['valore'] == 'Trimestrale' && $totale_iva > 0) { +if ($periodo['valore'] == 'Trimestrale' && $totale_iva > 25.82) { if ($totale_iva_periodo_precedente < 25.82 && $totale_iva_periodo_precedente > 0) { $totale_iva += $totale_iva_periodo_precedente; } @@ -300,7 +300,7 @@ echo ' IVA A DEBITO CON MAGGIORAZIONE'; - if ($totale_iva > '25.82' && $periodo['valore'] == 'Trimestrale') { + if ($totale_iva > 25.82 && $periodo['valore'] == 'Trimestrale') { echo' '.moneyFormat($totale_iva_maggiorata, 2).''; } else { @@ -312,7 +312,7 @@ echo ' IMPORTO DA VERSARE'; if ($totale_iva > 25.82) { - if ($periodo['valore'] == 'Mensile' || ($totale_iva_periodo_precedente < 25.82 && $totale_iva_periodo_precedente > 0)) { + if ($periodo['valore'] == 'Mensile') { echo' '.moneyFormat($totale_iva, 2).''; } else {