diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-10-16 13:19:45 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-10-16 13:19:45 +0700 |
| commit | 94a96e371f554c7d87e2a6edbc6bdb7fe9228fd6 (patch) | |
| tree | 380973ce3b84f9a3941ddf33e460adf619259aff /src/lib/transaction/components | |
| parent | ca30c28dd0b19977eb771fc32ff5e520cdef1068 (diff) | |
<iman> add CR tambahin info jumlah barang ready stock yang bisa di pick up
Diffstat (limited to 'src/lib/transaction/components')
| -rw-r--r-- | src/lib/transaction/components/Transaction.jsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/transaction/components/Transaction.jsx b/src/lib/transaction/components/Transaction.jsx index 4d401037..d001c7f4 100644 --- a/src/lib/transaction/components/Transaction.jsx +++ b/src/lib/transaction/components/Transaction.jsx @@ -778,6 +778,10 @@ const Transaction = ({ id }) => { ? `| ${product?.attributes.join(', ')}` : ''} </div> + <div className='text-[10px] text-red-500 italic mt-2'> + {product.availableQuantity} barang ini bisa di + pickup maksimal pukul 16.00 + </div> </div> </td> {/* <td> @@ -879,7 +883,7 @@ const Transaction = ({ id }) => { </div> </div> </div> - )} + )} {transaction?.data?.productsRejectLine.length > 0 && ( <div className='text-h-sm font-semibold mt-10 mb-4'> |
