diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2025-05-23 11:26:04 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2025-05-23 11:26:04 +0700 |
| commit | 4ef92b4d9fea4fdd636d62194514b33ed3b3c387 (patch) | |
| tree | d98775e4b549057074b09d2c2191b08fc0b05d58 /src/lib/transaction/components/Transaction.jsx | |
| parent | 0a5e12b03eee0f559a19f7dce861161ff2ce5a49 (diff) | |
expected ready to ship di quotation
Diffstat (limited to 'src/lib/transaction/components/Transaction.jsx')
| -rw-r--r-- | src/lib/transaction/components/Transaction.jsx | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/lib/transaction/components/Transaction.jsx b/src/lib/transaction/components/Transaction.jsx index 2ca7d386..48bea2bf 100644 --- a/src/lib/transaction/components/Transaction.jsx +++ b/src/lib/transaction/components/Transaction.jsx @@ -406,6 +406,11 @@ const Transaction = ({ id }) => { <TransactionStatusBadge status={transaction.data?.status} /> </div> </DescriptionRow> + <DescriptionRow label='Status Transaksi'> + <div className='flex justify-end font-semibold text-red-500'> + {transaction.data?.expectedReadyToShip} + </div> + </DescriptionRow> <DescriptionRow label='No Transaksi'> {transaction.data?.name} </DescriptionRow> @@ -615,11 +620,16 @@ const Transaction = ({ id }) => { )} </div> - <div className='flex items-center gap-x-2 mb-3'> - <span className='text-h-sm font-medium'> - {transaction?.data?.name} - </span> - <TransactionStatusBadge status={transaction?.data?.status} /> + <div className="flex items-center justify-between mb-3"> + <div className="flex items-center gap-x-2"> + <span className="text-h-sm font-medium"> + {transaction?.data?.name} + </span> + <TransactionStatusBadge status={transaction?.data?.status} /> + </div> + <div className="text-h-sm"> + Estimasi Barang Siap: <span className="text-red-500 font-semibold">{transaction?.data?.expectedReadyToShip}</span> + </div> </div> <div className='flex gap-x-4'> <button |
