From dee72b99e62993b63fa1db3aa3c7ae2a4097f3c2 Mon Sep 17 00:00:00 2001 From: Pek5892 Date: Fri, 24 Feb 2023 11:16:41 +0100 Subject: [PATCH] Fix riapertura fattura --- modules/fatture/actions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/fatture/actions.php b/modules/fatture/actions.php index 8e20aa5f6..45c0f0933 100755 --- a/modules/fatture/actions.php +++ b/modules/fatture/actions.php @@ -367,6 +367,9 @@ switch (post('op')) { case 'reopen': if (!empty($id_record)) { + $stato = Stato::where('descrizione', 'Bozza')->first(); + $fattura->stato()->associate($stato); + $fattura->save(); $stato = Stato::where('descrizione', 'Emessa')->first(); $fattura->stato()->associate($stato); $fattura->save();