summaryrefslogtreecommitdiff
path: root/src-migrate/modules/cart/components
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/modules/cart/components')
-rw-r--r--src-migrate/modules/cart/components/Item.tsx17
1 files changed, 10 insertions, 7 deletions
diff --git a/src-migrate/modules/cart/components/Item.tsx b/src-migrate/modules/cart/components/Item.tsx
index 6ffbb524..ab2e7ce1 100644
--- a/src-migrate/modules/cart/components/Item.tsx
+++ b/src-migrate/modules/cart/components/Item.tsx
@@ -36,26 +36,29 @@ const CartItem = ({ item, editable = true, selfPicking}: Props) => {
)}
<div className='w-2' />
<div>
- Selamat! Pembelian anda lebih hemat {' '}
+ Selamat! Pembelian anda lebih hemat{' '}
<span className={style.savingAmt}>
- Rp{formatCurrency((item.package_price || 0) * item.quantity - item.subtotal)}
+ Rp
+ {formatCurrency(
+ (item.package_price || 0) * item.quantity - item.subtotal
+ )}
</span>
</div>
</div>
)}
<div className={style.mainProdWrapper}>
- {editable && (
- <CartItemSelect item={item} />
- )}
+ {editable && <CartItemSelect item={item} />}
<div className='w-4' />
<CartItem.Image item={item} />
<div className={style.details}>
- {(item.is_in_bu) && (item.on_hand_qty >= item.quantity) && (
+ {item?.available_quantity > 0 && (
<div className='text-[10px] text-red-500 italic'>
- *Barang ini bisa di pickup maksimal pukul 16.00
+ {item.quantity <= item?.available_quantity
+ ? '*Barang ini bisa di pickup maksimal pukul 16.00'
+ : `*${item?.available_quantity} Barang ini bisa di pickup maksimal pukul 16.00`}
</div>
)}
<CartItem.Name item={item} />