ADB: Added stiege as part of Hausnummer

This commit is contained in:
Frank Schubert
2024-05-16 15:47:41 +02:00
parent 58ffea17a4
commit 29459e9cca
13 changed files with 111 additions and 36 deletions
+7
View File
@@ -730,6 +730,13 @@ class PreorderModel {
$where .= " AND adb_hausnummer.hausnummer like '%$hausnummer%'";
}
}
if(array_key_exists("stiege", $filter)) {
$stiege = FronkDB::singleton()->escape($filter['stiege']);
if($stiege) {
$where .= " AND adb_hausnummer.stiege like '%$stiege%'";
}
}
if(array_key_exists("unit_count", $filter)) {
$unit_count = $filter['unit_count'];