This commit is contained in:
loviuz 2023-02-24 11:26:44 +01:00
commit a80e82f40d
1 changed files with 3 additions and 0 deletions

View File

@ -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();