Bugfix Produktion empty status

This commit is contained in:
OpenXE 2022-11-07 11:29:43 +00:00
parent 20c64a97ea
commit ea5ac90b13

View File

@ -284,6 +284,10 @@ class Produktion {
$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['datumbereitstellung'] = $this->app->erp->ReplaceDatum(true,$input['datumbereitstellung'],true);
$input['datumproduktion'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktion'],true);