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 003771d commit 9322417Copy full SHA for 9322417
app/code/Magento/Bundle/Pricing/Price/BundleOptionPrice.php
@@ -109,13 +109,15 @@ public function getOptions()
109
*/
110
public function getOptionSelectionAmount($selection)
111
{
112
- $cacheKey = implode('_',
+ $cacheKey = implode(
113
+ '_',
114
[
115
$this->product->getId(),
116
$selection->getOptionId(),
117
$selection->getSelectionId()
118
]
119
);
120
+
121
if (!isset($this->optionSelecionAmountCache[$cacheKey])) {
122
$selectionPrice = $this->selectionFactory
123
->create($this->product, $selection, $selection->getSelectionQty());
0 commit comments