From a4449204b5701f289463ee37eeb275ed60dd3059 Mon Sep 17 00:00:00 2001
From: Xenomporio <>
Date: Fri, 22 Jul 2022 17:42:03 +0200
Subject: [PATCH] Ticket module primitive list view
---
www/pages/content/ticket_edit.tpl | 119 ++++++++++++++
www/pages/content/ticket_list.tpl | 5 +
www/pages/ticket.php | 256 ++++++++++++++++++++++++++++++
3 files changed, 380 insertions(+)
create mode 100644 www/pages/content/ticket_edit.tpl
create mode 100644 www/pages/content/ticket_list.tpl
create mode 100644 www/pages/ticket.php
diff --git a/www/pages/content/ticket_edit.tpl b/www/pages/content/ticket_edit.tpl
new file mode 100644
index 00000000..6391fe05
--- /dev/null
+++ b/www/pages/content/ticket_edit.tpl
@@ -0,0 +1,119 @@
+
+
diff --git a/www/pages/content/ticket_list.tpl b/www/pages/content/ticket_list.tpl
new file mode 100644
index 00000000..1742e34f
--- /dev/null
+++ b/www/pages/content/ticket_list.tpl
@@ -0,0 +1,5 @@
+
+ [MESSAGE]
+ [TAB1]
+ [TAB1NEXT]
+
diff --git a/www/pages/ticket.php b/www/pages/ticket.php
new file mode 100644
index 00000000..e9ccf91a
--- /dev/null
+++ b/www/pages/ticket.php
@@ -0,0 +1,256 @@
+app = $app;
+ if ($intern)
+ return;
+
+ $this->app->ActionHandlerInit($this);
+ $this->app->ActionHandler("list", "ticket_list");
+ $this->app->ActionHandler("create", "ticket_edit"); // This automatically adds a "New" button
+ $this->app->ActionHandler("edit", "ticket_edit");
+ $this->app->ActionHandler("delete", "ticket_delete");
+ $this->app->DefaultActionHandler("list");
+ $this->app->ActionHandlerListen($app);
+ }
+
+ public function Install() {
+ /* Fill out manually later */
+ }
+
+
+ static function TableSearch(&$app, $name, $erlaubtevars) {
+
+
+ function ticket_iconssql() {
+ return "CONCAT('')";
+ }
+
+ switch ($name) {
+ case "ticket_list":
+ $allowed['ticket_list'] = array('list');
+ $heading = array('','','Ticket #', 'Datum', 'Adresse', 'Betreff', 'Notiz', 'Tags', 'Verantwortlich', 'Anzahl Nachrichten', 'Status', 'Alter', 'Projekt', 'Menü');
+ $width = array('1%','1%','5%', '5%', '5%', '20%', '20%', '5%', '5%', '1%', '1%', '5%', '5%', '5%');
+
+ $findcols = array('t.id','t.id','t.schluessel', 't.zeit', 't.bearbeiter', 'a.name', 't.betreff', 't.notiz', 't.tags', 'w.warteschlange', 't.nachichten_anz', 't.status', 't.projekt');
+ $searchsql = array('t.schluessel', 't.zeit', 't.bearbeiter', 'a.name', 't.betreff', 't.notiz', 't.tags', 'w.warteschlange', 't.nachichten_anz', 't.status', 't.projekt');
+
+ $defaultorder = 1;
+ $defaultorderdesc = 0;
+
+ $menu = "";
+
+
+ $timedifference = "if (
+ TIMESTAMPDIFF(hour, t.zeit, curdate()) < 24,
+ CONCAT(TIMESTAMPDIFF(hour, t.zeit, curdate()), 'h '),
+ CONCAT(
+ TIMESTAMPDIFF(day, t.zeit, curdate()), 'd ',MOD(TIMESTAMPDIFF(hour, t.zeit, curdate()), 24), 'h'))";
+
+ $dropnbox = "'' AS `open`, CONCAT('') AS `auswahl`";
+
+ $sql = "SELECT t.id,".$dropnbox.", t.schluessel, t.zeit, a.name, t.betreff, t.notiz, t.tags, w.warteschlange, t.nachrichten_anz, ".ticket_iconssql().", ".$timedifference.", p.abkuerzung, t.id
+ FROM ticket t
+ LEFT JOIN adresse a ON t.adresse = a.id
+ LEFT JOIN warteschlangen w ON t.warteschlange = w.id
+ LEFT JOIN projekt p on t.projekt = p.id";
+
+ $where = "1";
+
+ $moreinfo = true; // Allow drop down details
+ $menucol = 13; // For moredata
+
+ $count = "SELECT count(DISTINCT id) FROM ticket WHERE $where";
+// $groupby = "";
+
+ break;
+ }
+
+ $erg = false;
+
+ foreach ($erlaubtevars as $k => $v) {
+ if (isset($$v)) {
+ $erg[$v] = $$v;
+ }
+ }
+ return $erg;
+ }
+
+ function ticket_list() {
+ $this->app->erp->MenuEintrag("index.php?module=ticket&action=list", "Übersicht");
+ $this->app->erp->MenuEintrag("index.php?module=ticket&action=create", "Neu anlegen");
+
+ $this->app->erp->MenuEintrag("index.php", "Zurück");
+
+ $this->app->YUI->TableSearch('TAB1', 'ticket_list', "show", "", "", basename(__FILE__), __CLASS__);
+ $this->app->Tpl->Parse('PAGE', "ticket_list.tpl");
+ }
+
+ public function ticket_delete() {
+ $id = (int) $this->app->Secure->GetGET('id');
+
+ $this->app->DB->Delete("DELETE FROM `ticket` WHERE `id` = '{$id}'");
+ $this->app->Tpl->Set('MESSAGE', "Der Eintrag wurde gelöscht.
");
+
+ $this->ticket_list();
+ }
+
+ /*
+ * Edit ticket item
+ * If id is empty, create a new one
+ */
+
+ function ticket_edit() {
+ $id = $this->app->Secure->GetGET('id');
+
+ $this->app->Tpl->Set('ID', $id);
+
+ $this->app->erp->MenuEintrag("index.php?module=ticket&action=edit&id=$id", "Details");
+ $this->app->erp->MenuEintrag("index.php?module=ticket&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 ticket (".$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=ticket&action=list&msg=$msg");
+ } else {
+ $this->app->Tpl->Set('MESSAGE', "Die Einstellungen wurden erfolgreich übernommen.
");
+ }
+ }
+
+
+ // Load values again from database
+ $result = $this->app->DB->SelectArr("SELECT t.id, t.schluessel, t.zeit, t.projekt, t.bearbeiter, t.quelle, t.status, t.adresse, t.kunde, t.warteschlange, t.mailadresse, t.prio, t.betreff, t.zugewiesen, t.inbearbeitung, t.inbearbeitung_user, t.firma, t.notiz, t.bitteantworten, t.service, t.kommentar, t.privat, t.dsgvo, t.tags, t.nachrichten_anz, t.id FROM ticket t"." 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', "ticket_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['schluessel'] = $this->app->Secure->GetPOST('schluessel');
+ $input['zeit'] = $this->app->Secure->GetPOST('zeit');
+ $input['projekt'] = $this->app->Secure->GetPOST('projekt');
+ $input['bearbeiter'] = $this->app->Secure->GetPOST('bearbeiter');
+ $input['quelle'] = $this->app->Secure->GetPOST('quelle');
+ $input['status'] = $this->app->Secure->GetPOST('status');
+ $input['adresse'] = $this->app->Secure->GetPOST('adresse');
+ $input['kunde'] = $this->app->Secure->GetPOST('kunde');
+ $input['warteschlange'] = $this->app->Secure->GetPOST('warteschlange');
+ $input['mailadresse'] = $this->app->Secure->GetPOST('mailadresse');
+ $input['prio'] = $this->app->Secure->GetPOST('prio');
+ $input['betreff'] = $this->app->Secure->GetPOST('betreff');
+ $input['zugewiesen'] = $this->app->Secure->GetPOST('zugewiesen');
+ $input['inbearbeitung'] = $this->app->Secure->GetPOST('inbearbeitung');
+ $input['inbearbeitung_user'] = $this->app->Secure->GetPOST('inbearbeitung_user');
+ $input['firma'] = $this->app->Secure->GetPOST('firma');
+ $input['notiz'] = $this->app->Secure->GetPOST('notiz');
+ $input['bitteantworten'] = $this->app->Secure->GetPOST('bitteantworten');
+ $input['service'] = $this->app->Secure->GetPOST('service');
+ $input['kommentar'] = $this->app->Secure->GetPOST('kommentar');
+ $input['privat'] = $this->app->Secure->GetPOST('privat');
+ $input['dsgvo'] = $this->app->Secure->GetPOST('dsgvo');
+ $input['tags'] = $this->app->Secure->GetPOST('tags');
+ $input['nachrichten_anz'] = $this->app->Secure->GetPOST('nachrichten_anz');
+
+
+ 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('SCHLUESSEL', $input['schluessel']);
+ $this->app->Tpl->Set('ZEIT', $input['zeit']);
+ $this->app->Tpl->Set('PROJEKT', $input['projekt']);
+ $this->app->Tpl->Set('BEARBEITER', $input['bearbeiter']);
+ $this->app->Tpl->Set('QUELLE', $input['quelle']);
+ $this->app->Tpl->Set('STATUS', $input['status']);
+ $this->app->Tpl->Set('ADRESSE', $input['adresse']);
+ $this->app->Tpl->Set('KUNDE', $input['kunde']);
+ $this->app->Tpl->Set('WARTESCHLANGE', $input['warteschlange']);
+ $this->app->Tpl->Set('MAILADRESSE', $input['mailadresse']);
+ $this->app->Tpl->Set('PRIO', $input['prio']);
+ $this->app->Tpl->Set('BETREFF', $input['betreff']);
+ $this->app->Tpl->Set('ZUGEWIESEN', $input['zugewiesen']);
+ $this->app->Tpl->Set('INBEARBEITUNG', $input['inbearbeitung']);
+ $this->app->Tpl->Set('INBEARBEITUNG_USER', $input['inbearbeitung_user']);
+ $this->app->Tpl->Set('FIRMA', $input['firma']);
+ $this->app->Tpl->Set('NOTIZ', $input['notiz']);
+ $this->app->Tpl->Set('BITTEANTWORTEN', $input['bitteantworten']);
+ $this->app->Tpl->Set('SERVICE', $input['service']);
+ $this->app->Tpl->Set('KOMMENTAR', $input['kommentar']);
+ $this->app->Tpl->Set('PRIVAT', $input['privat']);
+ $this->app->Tpl->Set('DSGVO', $input['dsgvo']);
+ $this->app->Tpl->Set('TAGS', $input['tags']);
+ $this->app->Tpl->Set('NACHRICHTEN_ANZ', $input['nachrichten_anz']);
+
+ }
+
+}