From fd83642c374131aefc2ba68389ffadcf30d2d480 Mon Sep 17 00:00:00 2001 From: Sergey Date: Tue, 30 May 2017 16:19:44 +0300 Subject: [PATCH] Issues 6729, 6457, 7362: Configurable product price options provider --- .../Pricing/Price/LowestPriceOptionsProvider.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php index 498a7cac77e56..66bc3db7ee89d 100644 --- a/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php +++ b/app/code/Magento/ConfigurableProduct/Pricing/Price/LowestPriceOptionsProvider.php @@ -63,7 +63,9 @@ public function getProducts(ProductInterface $product) ); $this->linkedProductMap[$product->getId()] = $this->collectionFactory->create() - ->addAttributeToSelect(['price', 'special_price']) + ->addAttributeToSelect( + ['price', 'special_price', 'special_from_date', 'special_to_date', 'tax_class_id'] + ) ->addIdFilter($productIds) ->getItems(); }