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