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.
1 parent 0c2fa6f commit 70f198aCopy full SHA for 70f198a
app/code/Magento/Catalog/Pricing/Price/ConfiguredRegularPrice.php
@@ -63,7 +63,7 @@ public function setItem(ItemInterface $item) : ConfiguredRegularPrice
63
64
return $this;
65
}
66
-
+
67
/**
68
* Price value of product with configured options.
69
*
@@ -73,7 +73,7 @@ public function getValue()
73
{
74
$basePrice = parent::getValue();
75
76
- return $this->item
+ return $this->item && $basePrice !== false
77
? $basePrice + $this->configuredOptions->getItemOptionsValue($basePrice, $this->item)
78
: $basePrice;
79
0 commit comments