From 8da161120fe7d2cf52103cec7b396a39ce62f5cb Mon Sep 17 00:00:00 2001 From: cgfhtw Date: Tue, 22 Aug 2023 11:11:38 +0200 Subject: [PATCH] Abmeldung (Stg): Suche auch nach student_uid --- application/models/organisation/Studiengang_model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/organisation/Studiengang_model.php b/application/models/organisation/Studiengang_model.php index 8b7d93035..7ec99b5bf 100644 --- a/application/models/organisation/Studiengang_model.php +++ b/application/models/organisation/Studiengang_model.php @@ -599,6 +599,7 @@ class Studiengang_model extends DB_Model $this->db->group_start(); $this->db->where('pers.vorname ILIKE', "%" . $q . "%"); $this->db->or_where('pers.nachname ILIKE', "%" . $q . "%"); + $this->db->or_where('stud.student_uid ILIKE', "%" . $q . "%"); $this->db->or_where($this->dbTable . '.bezeichnung ILIKE', "%" . $q . "%"); if (is_numeric($q)) $this->db->or_where('p.prestudent_id', $q);