From e36730e11dc3bd109baf0c1e21f61fe8ec2c1af4 Mon Sep 17 00:00:00 2001 From: rahulshukla-home Date: Wed, 8 Jul 2020 19:36:40 +0530 Subject: [PATCH] Issue #3443 fixed --- packages/Webkul/Product/src/Type/AbstractType.php | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/Webkul/Product/src/Type/AbstractType.php b/packages/Webkul/Product/src/Type/AbstractType.php index d17a1c7cf..1ada781c8 100644 --- a/packages/Webkul/Product/src/Type/AbstractType.php +++ b/packages/Webkul/Product/src/Type/AbstractType.php @@ -539,6 +539,7 @@ abstract class AbstractType if ($haveSpecialPrice) { $this->product->special_price = min($this->product->special_price, $customerGroupPrice); } else { + $haveSpecialPrice = true; $this->product->special_price = $customerGroupPrice; }