Fixed missing decimal places in Contract prices

This commit is contained in:
Frank Schubert
2024-12-03 18:57:22 +01:00
parent 0abb91443d
commit e20a528398
2 changed files with 4 additions and 1 deletions

View File

@@ -495,6 +495,8 @@ class ContractModel {
$product_id = $filter['product_id'];
if(is_numeric($product_id)) {
$where .= " AND Contract.product_id=$product_id";
} elseif(is_array($product_id)) {
$where .= " AND Contract.product_id IN (".implode(",", $product_id).")";
}
}