Mrp Condition

This commit is contained in:
karthikalakshmi 2026-02-26 12:12:55 +05:30
parent aede4277a5
commit b6e76336a4
1 changed files with 3 additions and 3 deletions

View File

@ -6485,7 +6485,7 @@ const BSItemCard = (props) => {
: '',
}}
>
MRP: {ItemMRP(item)} 
{ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
</p>
)}
@ -6932,7 +6932,7 @@ const BSItemCard = (props) => {
: '',
}}
>
MRP: {ItemMRP(item)}&nbsp;
{ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
</p>
)}
@ -7258,7 +7258,7 @@ const BSItemCard = (props) => {
)) && (
<div className="card4PriceUom">
<div className="card4MRP">
MRP: {ItemMRP(item)}
{ItemMRP(item) > 0 ? `MRP: ₹ ${ItemMRP(item)}` : ''}
</div>
</div>
)}