summaryrefslogtreecommitdiff
path: root/src/lib/quotation/components/Quotationheader.jsx
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-08-07 12:10:50 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-08-07 12:10:50 +0700
commita1ed8969b451acc7867622fc302b0fd2b3c970a2 (patch)
tree456233f7520525ebe395c5625d602c374221fd8b /src/lib/quotation/components/Quotationheader.jsx
parenta63b03fffdf46ecddecf356d1d00d6582add75cf (diff)
<iman> update quotation pop up
Diffstat (limited to 'src/lib/quotation/components/Quotationheader.jsx')
-rw-r--r--src/lib/quotation/components/Quotationheader.jsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/quotation/components/Quotationheader.jsx b/src/lib/quotation/components/Quotationheader.jsx
index 9f0f17a6..c9686b5a 100644
--- a/src/lib/quotation/components/Quotationheader.jsx
+++ b/src/lib/quotation/components/Quotationheader.jsx
@@ -184,26 +184,26 @@ const Quotationheader = (quotationCount) => {
qotation?.map((product, index) => (
<>
<li className='py-1 sm:py-2'>
- <div className='flex justify-between border p-1 flex-col gap-y-2'>
+ <div className='flex justify-between border p-2 flex-col gap-y-2'>
<div className='flex justify-between'>
- <p className='tanggal text-base'>{product.dateOrder}</p>
- <p className='badge-red h-fit md:text-caption-2 whitespace-nowrap'>Pending Quotation</p>
+ <p className='tanggal text-xs'>{product.dateOrder}</p>
+ <p className='badge-red h-fit md:text-caption-1 whitespace-nowrap'>Pending Quotation</p>
</div>
<div className='bagian tengah flex justify-between'>
<div className='no transaksi '>
- <p className='text-base'>
+ <p className='text-xs'>
No. Transaksi
</p>
- <p className='font-semibold text-red-500'>
+ <Link href='/my/quotations' className='font-semibold text-sm text-red-500'>
{product.name}
- </p>
+ </Link>
</div>
<div className='purchase'>
- <p className='text-base'>
+ <p className='text-xs'>
No. Purchase Order
</p>
<p className='font-semibold text-red-500'>
- {product.purchaseOrderFile}
+ {product.purchaseOrderFile ? product.purchaseOrderFile : '-'}
</p>
</div>
</div>