From 97189c42ab0b3001a25512294c89165df9856de3 Mon Sep 17 00:00:00 2001 From: MatteoPistorello Date: Wed, 14 Sep 2022 16:22:35 +0200 Subject: [PATCH] Fix emissione fatture non fiscali da bulk --- modules/fatture/bulk.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/fatture/bulk.php b/modules/fatture/bulk.php index 882ff1fc4..f5ada75d6 100755 --- a/modules/fatture/bulk.php +++ b/modules/fatture/bulk.php @@ -464,7 +464,7 @@ switch (post('op')) { $fattura = Fattura::find($id); $stato_precedente = Stato::find($fattura->idstatodocumento); - if ($stato_precedente->descrizione == 'Bozza') { + if ($stato_precedente->descrizione == 'Bozza' && $fattura->isFiscale()) { $fattura->stato()->associate($new_stato); $results = $fattura->save(); $message = '';