Merge pull request #3687 from rahulcs0082/development
Issue #3411 fixed
This commit is contained in:
commit
042438e767
|
|
@ -539,8 +539,10 @@ abstract class AbstractType
|
|||
if ($haveSpecialPrice) {
|
||||
$this->product->special_price = min($this->product->special_price, $customerGroupPrice);
|
||||
} else {
|
||||
$haveSpecialPrice = true;
|
||||
$this->product->special_price = $customerGroupPrice;
|
||||
if ($customerGroupPrice != $this->product->price) {
|
||||
$haveSpecialPrice = true;
|
||||
$this->product->special_price = $customerGroupPrice;
|
||||
}
|
||||
}
|
||||
|
||||
return $haveSpecialPrice;
|
||||
|
|
|
|||
Loading…
Reference in New Issue