We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40a8b80 + 774e262 commit 782769dCopy full SHA for 782769d
app/code/Magento/Catalog/Pricing/Price/ConfiguredRegularPrice.php
@@ -70,7 +70,8 @@ public function setItem(ItemInterface $item)
70
public function getValue()
71
{
72
$basePrice = parent::getValue();
73
- return $this->item
+
74
+ return ($this->item && $basePrice !== false)
75
? $basePrice + $this->configuredOptions->getItemOptionsValue($basePrice, $this->item)
76
: $basePrice;
77
}
0 commit comments