Skip to content

Commit 306128d

Browse files
ENGCOM-1832: FIX for issue #15457 - Bundle Products price range is showing expired… #15535
- Merge Pull Request #15535 from phoenix128/magento2:issue-15457-bundle-product-expired-price-range - Merged commits: 1. ca6e479
2 parents f38cc97 + ca6e479 commit 306128d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Bundle/Pricing/Adjustment/DefaultSelectionPriceListProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ public function getPriceList(Product $bundleProduct, $searchMin, $useRegularPric
6161

6262
if (!$useRegularPrice) {
6363
$selectionsCollection->addAttributeToSelect('special_price');
64-
$selectionsCollection->addAttributeToSelect('special_price_from');
65-
$selectionsCollection->addAttributeToSelect('special_price_to');
64+
$selectionsCollection->addAttributeToSelect('special_from_date');
65+
$selectionsCollection->addAttributeToSelect('special_to_date');
6666
$selectionsCollection->addAttributeToSelect('tax_class_id');
6767
}
6868

0 commit comments

Comments
 (0)