From 1e55b13546826db2b12da607977b0fa00d112bb5 Mon Sep 17 00:00:00 2001 From: Harald Bamberger Date: Mon, 28 Oct 2024 15:58:20 +0100 Subject: [PATCH] force use of insertamum column from antrag table --- application/models/education/Studierendenantrag_model.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/models/education/Studierendenantrag_model.php b/application/models/education/Studierendenantrag_model.php index 80804f49a..677d01f04 100644 --- a/application/models/education/Studierendenantrag_model.php +++ b/application/models/education/Studierendenantrag_model.php @@ -151,6 +151,7 @@ class Studierendenantrag_model extends DB_Model $this->addSelect('s.insertvon status_insertvon'); $this->addSelect('t.bezeichnung[(' . $lang . ')] statustyp'); $this->addSelect('p.unruly AS unruly'); + $this->addSelect($this->dbTable . '.insertamum AS insertamum'); $this->addJoin( 'campus.tbl_studierendenantrag_status s', @@ -489,4 +490,4 @@ class Studierendenantrag_model extends DB_Model return hasData($this->load()); } -} \ No newline at end of file +}