Fix cambio stato interventi in fase di fatturazione
This commit is contained in:
parent
aed5aa1a66
commit
9eaa601732
|
@ -255,8 +255,10 @@ class Contratto extends Document
|
|||
$interventi = $this->interventi;
|
||||
$stato_intervento = \Modules\Interventi\Stato::where('codice', $codice_intervento)->first();
|
||||
foreach ($interventi as $intervento) {
|
||||
$intervento->stato()->associate($stato_intervento);
|
||||
$intervento->save();
|
||||
if ($intervento->stato->is_completato==1) {
|
||||
$intervento->stato()->associate($stato_intervento);
|
||||
$intervento->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -283,8 +283,10 @@ class Preventivo extends Document
|
|||
$interventi = $this->interventi;
|
||||
$stato_intervento = \Modules\Interventi\Stato::where('codice', $codice_intervento)->first();
|
||||
foreach ($interventi as $intervento) {
|
||||
$intervento->stato()->associate($stato_intervento);
|
||||
$intervento->save();
|
||||
if ($intervento->stato->is_completato==1) {
|
||||
$intervento->stato()->associate($stato_intervento);
|
||||
$intervento->save();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue