diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2025-05-22 15:33:04 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2025-05-22 15:33:04 +0700 |
| commit | 60cbad2ae4b551d8f1e6959a3c90134c16b10e26 (patch) | |
| tree | f3a4c5cf47f3afafb6b5b7d902db58304d875815 /src/lib/transaction | |
| parent | 5eed16f154dee8e72d9ac55ff5eb8a958e0e6db1 (diff) | |
form-merchant & quotation tampilan
Diffstat (limited to 'src/lib/transaction')
| -rw-r--r-- | src/lib/transaction/components/Transaction.jsx | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/lib/transaction/components/Transaction.jsx b/src/lib/transaction/components/Transaction.jsx index 2ca7d386..b63796fb 100644 --- a/src/lib/transaction/components/Transaction.jsx +++ b/src/lib/transaction/components/Transaction.jsx @@ -406,6 +406,9 @@ const Transaction = ({ id }) => { <TransactionStatusBadge status={transaction.data?.status} /> </div> </DescriptionRow> + <DescriptionRow label='Estimasi Barang Siap'> + {transaction.data?.expectedReadyToShip} + </DescriptionRow> <DescriptionRow label='No Transaksi'> {transaction.data?.name} </DescriptionRow> @@ -615,11 +618,17 @@ 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 |
