Bugfix Produktion empty status
This commit is contained in:
parent
20c64a97ea
commit
ea5ac90b13
|
|
@ -284,6 +284,10 @@ class Produktion {
|
||||||
$input['datum'] = $this->app->erp->ReplaceDatum(true,$input['datum'],true);
|
$input['datum'] = $this->app->erp->ReplaceDatum(true,$input['datum'],true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($input['status']) || $input['status'] == '') {
|
||||||
|
$input['status'] = 'angelegt';
|
||||||
|
}
|
||||||
|
|
||||||
$input['datumauslieferung'] = $this->app->erp->ReplaceDatum(true,$input['datumauslieferung'],true);
|
$input['datumauslieferung'] = $this->app->erp->ReplaceDatum(true,$input['datumauslieferung'],true);
|
||||||
$input['datumbereitstellung'] = $this->app->erp->ReplaceDatum(true,$input['datumbereitstellung'],true);
|
$input['datumbereitstellung'] = $this->app->erp->ReplaceDatum(true,$input['datumbereitstellung'],true);
|
||||||
$input['datumproduktion'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktion'],true);
|
$input['datumproduktion'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktion'],true);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue