Skip to content

Commit 7eaac9c

Browse files
committed
MAGETWO-54682: [Customer] Fast load of product options
- MAGETWO-55913: Information about special price for Configurable option is not presented in catalog and product page
1 parent e2f1d00 commit 7eaac9c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

app/code/Magento/ConfigurableProduct/Pricing/Price/ConfigurableOptionsProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ public function getProducts(ProductInterface $product)
7777

7878
$this->products[$product->getId()] = $this->collectionFactory->create()
7979
->addIdFilter($productIds)
80-
->addPriceData();
80+
->addAttributeToSelect('*')
81+
->addPriceData()
82+
->addTierPriceData();
8183
} else {
8284
$this->products[$product->getId()] = $this->configurable->getUsedProducts($product);
8385
}

0 commit comments

Comments
 (0)