Bugfix produktion projekt selection

This commit is contained in:
OpenXE 2023-01-12 16:51:58 +01:00
parent f535679263
commit c9a24e7f75
2 changed files with 4 additions and 1 deletions

View File

@ -191,7 +191,7 @@
<td><input type="number" min="0" name="menge_ausschuss_produzieren" id="menge_ausschuss_produzieren" value="[MENGE_AUSSCHUSS_PRODUZIEREN]" size="20"></td> <td><input type="number" min="0" name="menge_ausschuss_produzieren" id="menge_ausschuss_produzieren" value="[MENGE_AUSSCHUSS_PRODUZIEREN]" size="20"></td>
</tr> </tr>
<tr [AKTION_PRODUZIEREN_VISIBLE]> <tr [AKTION_PRODUZIEREN_VISIBLE]>
<td>{|Ziellager|}:</td><i>Info like this.</i> <td>{|Ziellager|}:</td>
<td><input type="text" name="ziellager" id="ziellager" value="[ZIELLAGER]" size="20"></td> <td><input type="text" name="ziellager" id="ziellager" value="[ZIELLAGER]" size="20"></td>
</tr> </tr>
</table> </table>

View File

@ -420,6 +420,7 @@ class Produktion {
$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);
$input['datumproduktionende'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktionende'],true); $input['datumproduktionende'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktionende'],true);
$input['projekt'] = $this->app->erp->ReplaceProjekt(true,$input['projekt'],true);
$columns = "id, "; $columns = "id, ";
$values = "$id, "; $values = "$id, ";
@ -1053,6 +1054,8 @@ class Produktion {
$msg .= "<div class=\"error\">Kein Materiallager ausgew&auml;hlt.</div>"; $msg .= "<div class=\"error\">Kein Materiallager ausgew&auml;hlt.</div>";
} }
$this->app->Tpl->Set('PROJEKT',$this->app->erp->ReplaceProjekt(false,$produktion_from_db['projekt'],false));
$this->app->YUI->AutoComplete("projekt", "projektname", 1); $this->app->YUI->AutoComplete("projekt", "projektname", 1);
$this->app->YUI->AutoComplete("kundennummer", "kunde", 1); $this->app->YUI->AutoComplete("kundennummer", "kunde", 1);
$this->app->YUI->AutoComplete("auftragid", "auftrag", 1); $this->app->YUI->AutoComplete("auftragid", "auftrag", 1);