From 500f992076170cb67dbd5f65a32b48637274f6c6 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Wed, 13 Jul 2022 17:18:30 +0200 Subject: [PATCH] Fix criteri applicazione bollo --- 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 a4174bd78..1e0a3fa41 100644 --- a/modules/fatture/src/Gestori/Bollo.php +++ b/modules/fatture/src/Gestori/Bollo.php @@ -48,7 +48,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']); + return $item->aliquota != null && in_array($item->aliquota->codice_natura_fe, ['N2.1', 'N2.2', 'N3.5', 'N3.6', 'N4']); }); $importo_righe_bollo = $righe_bollo->sum('totale_imponibile');