From df6445c38f33cde6a8e959748f64bb11b56012e1 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Wed, 15 Jun 2022 15:01:06 +0200 Subject: [PATCH] Fix visualizzazione fatture scadute parzialmente pagate --- modules/fatture/actions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fatture/actions.php b/modules/fatture/actions.php index a88929b5f..330005abb 100755 --- a/modules/fatture/actions.php +++ b/modules/fatture/actions.php @@ -275,7 +275,7 @@ switch (post('op')) { case 'fatture_scadute': $id_anagrafica = post('id_anagrafica'); $stato1 = Stato::where('descrizione', 'Emessa')->first(); - $stato2 = Stato::where('descrizione', 'Prazialmente pagato')->first(); + $stato2 = Stato::where('descrizione', 'Parzialmente pagato')->first(); $fatture = Fattura::vendita() ->select('*', 'co_documenti.id AS id', 'co_documenti.data AS data')