Skip to content

Commit 8f21f20

Browse files
🔃 [EngCom] Public Pull Requests - 2.1-develop
Accepted Public Pull Requests: - #13490: [Backport 2.1] #9796 configurable product price options provider (by @simpleadm) Fixed GitHub Issues: - #6457: Expired special_price is still shown for configurable products when no variant is selected (reported by @heldchen) has been fixed in #13490 by @simpleadm in 2.1-develop branch Related commits: 1. 40ddfc0 - #6729: Configurable product old price with taxes displayed wrong (reported by @kandrejevs) has been fixed in #13490 by @simpleadm in 2.1-develop branch Related commits: 1. 40ddfc0 - #7362: Special price vigency for configurable childs (simple products associated) doesn´t work (reported by @valenciaisaza) has been fixed in #13490 by @simpleadm in 2.1-develop branch Related commits: 1. 40ddfc0
2 parents 7f03953 + 45aa576 commit 8f21f20

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)