1. Tier price defined in Product Attribute Combination of the product
2. Product detail page with the corresponding product attribute combination, without the tier price
Describe your problem:
When we add tier prices for specific product attribute combination, they doesn't show up on the product detail page. It shows only Tier prices, when they defined in the main product. While debugging, I the checked the displayTierPrices variable on the breakpoint in _ProductTierPrices.cshtml:
@model IList<ProductDetailsModel.TierPriceModel>
@{
//When there is just one tier (with qty 1), there are no actual savings in the list.
var displayTierPrices = Model.Any() && !(Model.Count == 1 && Model[0].Quantity <= 1);
}
When Tier prices defined in product attribute combinations, Model.Count will be 0. For my understanding, it only filled by the product tier prices, not by tier prices of the corresponding product attribute combination.
Version of GrandNode: 4.50
Did you make any private modifications of GrandNode?: No