create merged branch with all features on topic Wiederholer - feature 12995

This commit is contained in:
Harald Bamberger
2021-08-19 14:57:10 +02:00
4 changed files with 44 additions and 21 deletions
+14
View File
@@ -179,5 +179,19 @@ class statusgrund extends basis_db
return true;
}
public function getByBezeichnung($beschreibung)
{
$qry = "
SELECT
*
FROM
public.tbl_status_grund
WHERE beschreibung[1] = '" . $beschreibung . "'
";
$this->db_query($qry);
return $this->db_fetch_object();
}
}
?>