added v2 of cpeprov

This commit is contained in:
Luca Haid
2025-07-21 22:27:40 +02:00
parent 14757f4de0
commit f7218ab144
13 changed files with 786 additions and 57 deletions

View File

@@ -529,6 +529,13 @@ class OrderModel {
}
}
if(array_key_exists("add-where", $filter)) {
$add_where = $filter['add-where'];
if($add_where) {
$where .= " AND ($add_where)";
}
}
//var_dump($filter, $where);exit;
return $where;