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