diff --git a/www/lib/class.erpapi.php b/www/lib/class.erpapi.php
index a1dbc7bb..9c7734c3 100644
--- a/www/lib/class.erpapi.php
+++ b/www/lib/class.erpapi.php
@@ -7018,7 +7018,7 @@ title: 'Abschicken',
$navarray['menu']['admin'][$menu]['sec'][] = array('Preisanfrage','preisanfrage','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Bestellung','bestellung','list');
- $navarray['menu']['admin'][$menu]['sec'][] = array('Bestellvorschlag','bestellvorschlag','ausgehend');
+ $navarray['menu']['admin'][$menu]['sec'][] = array('Bestellvorschlag','bestellvorschlag','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Erweiterter Bestellvorschlag','bestellvorschlagapp','list');
$navarray['menu']['admin'][$menu]['sec'][] = array('Produktion','produktion','list');
diff --git a/www/pages/bestellvorschlag.php b/www/pages/bestellvorschlag.php
new file mode 100644
index 00000000..6eca2f56
--- /dev/null
+++ b/www/pages/bestellvorschlag.php
@@ -0,0 +1,231 @@
+app = $app;
+ if ($intern)
+ return;
+
+ $this->app->ActionHandlerInit($this);
+ $this->app->ActionHandler("list", "bestellvorschlag_list");
+ $this->app->ActionHandler("create", "bestellvorschlag_edit"); // This automatically adds a "New" button
+ $this->app->ActionHandler("edit", "bestellvorschlag_edit");
+ $this->app->ActionHandler("delete", "bestellvorschlag_delete");
+ $this->app->DefaultActionHandler("list");
+ $this->app->ActionHandlerListen($app);
+ }
+
+ public function Install() {
+ /* Fill out manually later */
+ }
+
+ static function TableSearch(&$app, $name, $erlaubtevars) {
+ switch ($name) {
+ case "bestellvorschlag_list":
+ $allowed['bestellvorschlag_list'] = array('list');
+ $heading = array('', '', 'Nr.', 'Artikel','Lieferant','Lager','Mindestlager','Vorschlag','Eingabe','');
+ $width = array('1%','1%','1%', '20%', '10%', '1%', '1%', '1%', '5%', '1%');
+
+ // columns that are aligned right (numbers etc)
+ // $alignright = array(4,5,6,7,8);
+
+ $findcols = array('a.id','a.id','l.name','a.nummer','a.name_de','lager','mindestlager','vorschlag');
+ $searchsql = array('a.name_de');
+
+ $defaultorder = 1;
+ $defaultorderdesc = 0;
+ $numbercols = array(6,7,8);
+// $sumcol = array(6);
+ $alignright = array(6,7,8);
+
+ $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`";
+
+// $menu = "
";
+
+ $input_for_menge = "CONCAT(
+ '',
+ ''
+ )";
+
+ $sql = "SELECT SQL_CALC_FOUND_ROWS
+ a.id,
+ $dropnbox,
+ a.nummer,
+ a.name_de,
+ l.name,
+ (SELECT
+ SUM(menge)
+ FROM
+ lager_platz_inhalt lpi INNER JOIN lager_platz lp ON lp.id = lpi.lager_platz
+ WHERE lpi.artikel = a.id AND lp.sperrlager = 0
+ ) as lager,
+ a.mindestlager as mindestlager,
+ if (a.mindestlager - (SELECT lager) > 0,(a.mindestlager - (SELECT lager)),0) as vorschlag,"
+ .$input_for_menge
+ ."FROM artikel a INNER JOIN adresse l ON l.id = a.adresse ";
+
+ $where = "a.adresse != '' AND a.geloescht != 1 AND a.inaktiv != 1";
+ $count = "SELECT count(DISTINCT a.id) FROM artikel a WHERE $where";
+// $groupby = "";
+
+ break;
+ }
+
+ $erg = false;
+
+ foreach ($erlaubtevars as $k => $v) {
+ if (isset($$v)) {
+ $erg[$v] = $$v;
+ }
+ }
+ return $erg;
+ }
+
+ function bestellvorschlag_list() {
+
+ $this->app->erp->MenuEintrag("index.php?module=bestellvorschlag&action=list", "Übersicht");
+ $this->app->erp->MenuEintrag("index.php?module=bestellvorschlag&action=create", "Neu anlegen");
+
+ $this->app->erp->MenuEintrag("index.php", "Zurück");
+
+ $this->app->YUI->TableSearch('TAB1', 'bestellvorschlag_list', "show", "", "", basename(__FILE__), __CLASS__);
+ $this->app->Tpl->Parse('PAGE', "bestellvorschlag_list.tpl");
+ }
+
+ public function bestellvorschlag_delete() {
+ $id = (int) $this->app->Secure->GetGET('id');
+
+ $this->app->DB->Delete("DELETE FROM `bestellvorschlag` WHERE `id` = '{$id}'");
+ $this->app->Tpl->Set('MESSAGE', "Der Eintrag wurde gelöscht.
");
+
+ $this->bestellvorschlag_list();
+ }
+
+ /*
+ * Edit bestellvorschlag item
+ * If id is empty, create a new one
+ */
+
+ function bestellvorschlag_edit() {
+ $id = $this->app->Secure->GetGET('id');
+
+ // Check if other users are editing this id
+ if($this->app->erp->DisableModul('artikel',$id))
+ {
+ return;
+ }
+
+ $this->app->Tpl->Set('ID', $id);
+
+ $this->app->erp->MenuEintrag("index.php?module=bestellvorschlag&action=edit&id=$id", "Details");
+ $this->app->erp->MenuEintrag("index.php?module=bestellvorschlag&action=list", "Zurück zur Übersicht");
+ $id = $this->app->Secure->GetGET('id');
+ $input = $this->GetInput();
+ $submit = $this->app->Secure->GetPOST('submit');
+
+ if (empty($id)) {
+ // New item
+ $id = 'NULL';
+ }
+
+ if ($submit != '')
+ {
+
+ // Write to database
+
+ // Add checks here
+
+ $columns = "id, ";
+ $values = "$id, ";
+ $update = "";
+
+ $fix = "";
+
+ foreach ($input as $key => $value) {
+ $columns = $columns.$fix.$key;
+ $values = $values.$fix."'".$value."'";
+ $update = $update.$fix.$key." = '$value'";
+
+ $fix = ", ";
+ }
+
+// echo($columns."
");
+// echo($values."
");
+// echo($update."
");
+
+ $sql = "INSERT INTO bestellvorschlag (".$columns.") VALUES (".$values.") ON DUPLICATE KEY UPDATE ".$update;
+
+// echo($sql);
+
+ $this->app->DB->Update($sql);
+
+ if ($id == 'NULL') {
+ $msg = $this->app->erp->base64_url_encode("Das Element wurde erfolgreich angelegt.
");
+ header("Location: index.php?module=bestellvorschlag&action=list&msg=$msg");
+ } else {
+ $this->app->Tpl->Set('MESSAGE', "Die Einstellungen wurden erfolgreich übernommen.
");
+ }
+ }
+
+
+ // Load values again from database
+ $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`";
+ $result = $this->app->DB->SelectArr("SELECT SQL_CALC_FOUND_ROWS b.id, $dropnbox, b.artikel, b.adresse, b.lager, b.id FROM bestellvorschlag b"." WHERE id=$id");
+
+ foreach ($result[0] as $key => $value) {
+ $this->app->Tpl->Set(strtoupper($key), $value);
+ }
+
+ /*
+ * Add displayed items later
+ *
+
+ $this->app->Tpl->Add('KURZUEBERSCHRIFT2', $email);
+ $this->app->Tpl->Add('EMAIL', $email);
+ $this->app->Tpl->Add('ANGEZEIGTERNAME', $angezeigtername);
+ */
+
+// $this->SetInput($input);
+ $this->app->Tpl->Parse('PAGE', "bestellvorschlag_edit.tpl");
+ }
+
+ /**
+ * Get all paramters from html form and save into $input
+ */
+ public function GetInput(): array {
+ $input = array();
+ //$input['EMAIL'] = $this->app->Secure->GetPOST('email');
+
+ $input['artikel'] = $this->app->Secure->GetPOST('artikel');
+ $input['adresse'] = $this->app->Secure->GetPOST('adresse');
+ $input['lager'] = $this->app->Secure->GetPOST('lager');
+
+
+ return $input;
+ }
+
+ /*
+ * Set all fields in the page corresponding to $input
+ */
+ function SetInput($input) {
+ // $this->app->Tpl->Set('EMAIL', $input['email']);
+
+ $this->app->Tpl->Set('ARTIKEL', $input['artikel']);
+ $this->app->Tpl->Set('ADRESSE', $input['adresse']);
+ $this->app->Tpl->Set('LAGER', $input['lager']);
+
+ }
+
+}
diff --git a/www/pages/content/bestellvorschlag_list.tpl b/www/pages/content/bestellvorschlag_list.tpl
new file mode 100644
index 00000000..43fd97f5
--- /dev/null
+++ b/www/pages/content/bestellvorschlag_list.tpl
@@ -0,0 +1,26 @@
+
+ [MESSAGE]
+
+ [TAB1NEXT]
+
+
+