Update PreorderStatusflagModel.php

This commit is contained in:
Luca Haid
2025-07-30 11:22:46 +00:00
parent a38dc07892
commit 26768252f0

View File

@@ -120,6 +120,13 @@ class PreorderStatusflagModel {
}
}
if (array_key_exists("ids", $filter)) {
$ids = $filter['ids'];
if (is_array($ids) && count($ids)) {
$where .= " AND PreorderStatusflag.id IN (" . implode(',', $ids) . ")";
}
}
if (array_key_exists("create_by", $filter)) {
$create_by = $filter['create_by'];
if (is_numeric($create_by)) {