From d0909258b8d1e2abbc5cda00126e0e8297766400 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Fri, 22 Jul 2022 14:40:58 +0200 Subject: [PATCH] Fix controlli gestionale per autofattura --- modules/aggiornamenti/src/Controlli/DatiFattureElettroniche.php | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/aggiornamenti/src/Controlli/DatiFattureElettroniche.php b/modules/aggiornamenti/src/Controlli/DatiFattureElettroniche.php index c95181b68..b0577e9e3 100644 --- a/modules/aggiornamenti/src/Controlli/DatiFattureElettroniche.php +++ b/modules/aggiornamenti/src/Controlli/DatiFattureElettroniche.php @@ -40,6 +40,7 @@ class DatiFattureElettroniche extends Controllo ->whereNotIn('codice_stato_fe', ['ERR', 'NS', 'EC02', 'ERVAL']) ->where('data', '>=', $_SESSION['period_start']) ->where('data', '<=', $_SESSION['period_end']) + ->where('is_fattura_conto_terzi', '=', 0) ->orderBy('data') ->get();