From 4cc29340b244fe843295c7c2d54e2c474b1c9294 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Fri, 20 Dec 2024 09:40:47 +0100 Subject: [PATCH] fix: bulk fatturazione ddt --- modules/ddt/bulk.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ddt/bulk.php b/modules/ddt/bulk.php index 090e6b8a7..2b592769c 100755 --- a/modules/ddt/bulk.php +++ b/modules/ddt/bulk.php @@ -89,12 +89,12 @@ switch (post('op')) { $fattura = Fattura::where('idanagrafica', $id_anagrafica) ->where('idstatodocumento', $stato_documenti_accodabili->id) ->where('idtipodocumento', $tipo_documento->id) + ->where('idsede_destinazione', $id_sede) ->first(); } else { $fattura = Fattura::where('idanagrafica', $id_anagrafica) ->where('idstatodocumento', $stato_documenti_accodabili->id) ->where('idtipodocumento', $tipo_standard->id) - ->where('idsede_destinazione', $id_sede) ->first(); }