= ({
{isBundle && (
-
-
- From
-
- {getProductPrice(
- item,
- currencySymbol,
- currencyRate,
- false,
- true
- )}
-
-
-
- To
-
- {getProductPrice(
- item,
- currencySymbol,
- currencyRate,
- true,
- true
- )}
+
+ {getBundledPrice(item, currencySymbol, currencyRate)}
)}
{isGrouped && (
-
-
- Starting at
-
- {getProductPrice(item, currencySymbol, currencyRate, false, true)}
+
+ {getPriceFormat(item, currencySymbol, currencyRate, false)}
)}
{isGiftCard && (
-
-
- From
-
- {getProductPrice(item, currencySymbol, currencyRate, false, true)}
+
+ {getPriceFormat(item, currencySymbol, currencyRate, true)}
)}
{!isGrouped &&
!isBundle &&
(isConfigurable || isComplexProductView) && (
-
-
- {translation.ProductCard.asLowAs}
-
- {discount ? (
- <>
-
- {getProductPrice(
- item,
- currencySymbol,
- currencyRate,
- false,
- false
- )}
-
-
- {getProductPrice(
- item,
- currencySymbol,
- currencyRate,
- false,
- true
- )}
-
- >
- ) : (
- getProductPrice(
- item,
- currencySymbol,
- currencyRate,
- false,
- true
- )
- )}
+
+ {getDiscountedPrice(discount)}
)}