diff --git a/com.twin.app.shoptime/src/components/TItemCard/TItemCard.new.jsx b/com.twin.app.shoptime/src/components/TItemCard/TItemCard.new.jsx index bee18b35..dd1792f3 100644 --- a/com.twin.app.shoptime/src/components/TItemCard/TItemCard.new.jsx +++ b/com.twin.app.shoptime/src/components/TItemCard/TItemCard.new.jsx @@ -479,14 +479,14 @@ export default memo(function TItemCardNew({ euEnrgLblInfos?.length > 0 && euEnrgLblInfos[0]?.enrgLblIcnUrl !== null && euEnrgLblInfos[0]?.enrgLblIcnUrl !== undefined && - countryCode === "GB" && + (countryCode === "GB" || countryCode === "DE") && css.labelBox, (parsePrice(originalPrice) >= 10000 || parsePrice(originPrice) >= 10000 ) && (parsePrice(discountedPrice) >= 10000 || parsePrice(dcPrice) >= 10000 ) && euEnrgLblInfos?.length > 0 && euEnrgLblInfos[0]?.enrgLblIcnUrl !== null && euEnrgLblInfos[0]?.enrgLblIcnUrl !== undefined && - countryCode === "GB" && + (countryCode === "GB" || countryCode === "DE") && css.labelOverBox )} > @@ -556,7 +556,7 @@ export default memo(function TItemCardNew({ } return ( - countryCode === "GB" && + (countryCode === "GB" || countryCode === "DE") && (euEnrgLblInfos?.length > 0 && euEnrgLblInfos[0]?.enrgLblIcnUrl !== null && euEnrgLblInfos[0]?.enrgLblIcnUrl !== undefined) && diff --git a/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.jsx b/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.jsx index 0ac0a91a..15031a90 100644 --- a/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.jsx +++ b/com.twin.app.shoptime/src/views/DetailPanel/ProductOverview/ProductPriceDisplay/ProductPriceDisplay.jsx @@ -52,7 +52,7 @@ export default function ProductPriceDisplay({ productType, productInfo }) { ); const convert = useSelector((state) => state.convert); - + const countryCode = useSelector((state) => state.common.httpHeader.cntry_cd); const webOSVersion = useSelector( (state) => state.common.appStatus.webOSVersion @@ -194,7 +194,7 @@ export default function ProductPriceDisplay({ productType, productInfo }) { /> )}
- {euEnrgLblInfos && euEnrgLblInfos.map((item, index)=>{ + {euEnrgLblInfos && (countryCode === "GB" || countryCode === "DE") && euEnrgLblInfos.map((item, index)=>{ return(