getFinalProductPriceFromPriceRule static method
- ProductEntity product,
- PriceRuleEntity priceRule
Implementation
static String getFinalProductPriceFromPriceRule(
ProductEntity product,
PriceRuleEntity priceRule,
) {
final num price = priceRule.priceVat;
return getPriceWithCurrency(price);
}