[-] BO : Use only 0% reduction from category in group

This commit is contained in:
Jérôme Nadaud
2013-07-16 18:28:11 +02:00
parent ae5b6b79ee
commit d66f407fcb
+2 -2
View File
@@ -2700,8 +2700,8 @@ class ProductCore extends ObjectModel
if ($use_group_reduction)
{
$reduction_from_category = GroupReduction::getValueForProduct($id_product, $id_group);
if (!empty($reduction_from_category))
if (!empty($reduction_from_category) && (float)$reduction_from_category == 0)
$price -= $price * (float)$reduction_from_category;
else // apply group reduction if there is no group reduction for this category
$price *= ((100 - Group::getReductionByIdGroup($id_group)) / 100);