Feature/preorder add history

This commit is contained in:
Luca Haid
2024-07-17 13:34:22 +00:00
committed by Frank Schubert
parent 076b513039
commit 04153eb8d3
6 changed files with 332 additions and 2 deletions
@@ -125,6 +125,13 @@ class PreorderstatusModel {
$where = "1=1 ";
//var_dump($filter);exit;
if(array_key_exists("id", $filter)) {
$id = $filter['id'];
if(is_numeric($id)) {
$where .= " AND id=$id";
}
}
if(array_key_exists("code", $filter)) {
$code = $filter['code'];