Fix minore

This commit is contained in:
Pek5892 2024-02-26 11:16:21 +01:00
parent 09b2f3d236
commit 70d48973bd
2 changed files with 3 additions and 3 deletions

View File

@ -110,7 +110,7 @@ switch (post('op')) {
$new->numero = Preventivo::getNextNumero(Carbon::now(), $new->id_segment);
$new->data_bozza = Carbon::now();
$stato_preventivo = Stato::where('descrizione', '=', 'Bozza')->first();
$stato_preventivo = (new Stato())->getByName('Bozza')->id_record;
$new->stato()->associate($stato_preventivo);
$new->save();
@ -385,7 +385,7 @@ switch (post('op')) {
// Copia del preventivo
$new = $preventivo->replicate();
$stato_preventivo = Stato::where('descrizione', '=', 'Bozza')->first();
$stato_preventivo = (new Stato())->getByName('Bozza')->id_record;
$new->stato()->associate($stato_preventivo);
$new->save();

View File

@ -275,7 +275,7 @@ class Preventivo extends Document
$codice_intervento = 'OK';
}
$stato = Stato::where('descrizione', $descrizione)->first();
$stato = (new Stato())->getByName($descrizione)->id_record;
$this->stato()->associate($stato);
$this->save();