From 91a60d6977d9dd0483fc49085d58a4361feb8443 Mon Sep 17 00:00:00 2001 From: Paul Walcher Date: Tue, 2 Nov 2021 16:28:56 +0100 Subject: [PATCH] Fix marca da bollo al cliente --- modules/fatture/src/Gestori/Bollo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fatture/src/Gestori/Bollo.php b/modules/fatture/src/Gestori/Bollo.php index eda5480f5..a4174bd78 100644 --- a/modules/fatture/src/Gestori/Bollo.php +++ b/modules/fatture/src/Gestori/Bollo.php @@ -50,7 +50,7 @@ class Bollo $righe_bollo = $this->fattura->getRighe()->filter(function ($item, $key) { return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N1', 'N2.1', 'N2.2', 'N3.1', 'N3.2', 'N3.3', 'N3.4', 'N3.5', 'N3.6', 'N4']); }); - $importo_righe_bollo = $righe_bollo->sum('netto'); + $importo_righe_bollo = $righe_bollo->sum('totale_imponibile'); // Leggo la marca da bollo se c'รจ e se il netto a pagare supera la soglia $bollo = ($this->fattura->direzione == 'uscita') ? $this->fattura->bollo : setting('Importo marca da bollo');