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 5ed3aa3 + 654b468 commit 774e262Copy full SHA for 774e262
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