|
|
@@ -626,7 +626,7 @@ class ProductClass extends BaseClass
|
|
|
$addPrice = $product['addPrice'] ?? 0;
|
|
|
$diff = bcsub($skMore,$addPrice, 2);
|
|
|
if ($diff > 0) {
|
|
|
- $price = bcsub($discountPrice, $diff, 2);
|
|
|
+ $price = bcadd($discountPrice, $diff, 2);
|
|
|
} else {
|
|
|
$price = $discountPrice;
|
|
|
}
|