From c9a24e7f75840203616be6eea0f3218b05e071b4 Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Thu, 12 Jan 2023 16:51:58 +0100 Subject: [PATCH] Bugfix produktion projekt selection --- www/pages/content/produktion_edit.tpl | 2 +- www/pages/produktion.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/www/pages/content/produktion_edit.tpl b/www/pages/content/produktion_edit.tpl index a77fa542..15f3254d 100644 --- a/www/pages/content/produktion_edit.tpl +++ b/www/pages/content/produktion_edit.tpl @@ -191,7 +191,7 @@ - {|Ziellager|}:Info like this. + {|Ziellager|}: diff --git a/www/pages/produktion.php b/www/pages/produktion.php index ce7ae7ae..5dab6f4c 100644 --- a/www/pages/produktion.php +++ b/www/pages/produktion.php @@ -420,6 +420,7 @@ class Produktion { $input['datumbereitstellung'] = $this->app->erp->ReplaceDatum(true,$input['datumbereitstellung'],true); $input['datumproduktion'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktion'],true); $input['datumproduktionende'] = $this->app->erp->ReplaceDatum(true,$input['datumproduktionende'],true); + $input['projekt'] = $this->app->erp->ReplaceProjekt(true,$input['projekt'],true); $columns = "id, "; $values = "$id, "; @@ -1053,6 +1054,8 @@ class Produktion { $msg .= "
Kein Materiallager ausgewählt.
"; } + $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("kundennummer", "kunde", 1); $this->app->YUI->AutoComplete("auftragid", "auftrag", 1);