1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 08:40:41 +01:00
This commit is contained in:
loviuz 2023-02-24 11:26:44 +01:00
commit a80e82f40d

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