Skip to content

Commit 943b952

Browse files
MAGETWO-87993: [Backport 2.1] #9796 configurable product price options provider #13490
- Merge Pull Request #13490 from simpleadm/magento2:backport/fix-configurable-lowest-price-provider - Merged commits: 1. 40ddfc0
2 parents 7f03953 + 40ddfc0 commit 943b952

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

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

6565
$this->productsMap[$product->getId()] = $this->collectionFactory->create()
66-
->addAttributeToSelect(['price', 'special_price'])
66+
->addAttributeToSelect(
67+
['price', 'special_price', 'special_from_date', 'special_to_date', 'tax_class_id']
68+
)
6769
->addIdFilter($productIds)
6870
->getItems();
6971
}

0 commit comments

Comments
 (0)