Added permissions to Order

This commit is contained in:
Frank Schubert
2021-08-06 16:35:38 +02:00
parent 2a4d5ac7d2
commit 4d51eb23f3
7 changed files with 231 additions and 21 deletions

View File

@@ -110,6 +110,10 @@ class ProductNetworkModel {
$network_id = $filter['network_id'];
if(is_numeric($network_id)) {
$where .= " AND network_id=$network_id";
} else {
if(is_array($network_id)) {
$where .= " AND network_id IN (". implode(",", $network_id).")";
}
}
}