diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-14 05:59:11 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-10-14 05:59:11 +0000 |
| commit | dfc898b298e16bf686d2929db0eee50abe87881d (patch) | |
| tree | ac755b5ec62e1523c46e95dbad6af51b11767918 /lib/rfq-last/vendor | |
| parent | b7069eccf7d54a9bb51c244207110c75a1d55f33 (diff) | |
(최겸) 구매 견적 첨부파일 기능 수정, 제출 후 수정x 추가 등
Diffstat (limited to 'lib/rfq-last/vendor')
| -rw-r--r-- | lib/rfq-last/vendor/rfq-vendor-table.tsx | 2 | ||||
| -rw-r--r-- | lib/rfq-last/vendor/vendor-detail-dialog.tsx | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/lib/rfq-last/vendor/rfq-vendor-table.tsx b/lib/rfq-last/vendor/rfq-vendor-table.tsx index 55549a6d..dc5564e2 100644 --- a/lib/rfq-last/vendor/rfq-vendor-table.tsx +++ b/lib/rfq-last/vendor/rfq-vendor-table.tsx @@ -1599,7 +1599,7 @@ export function RfqVendorTable({ ) : ( <> <Send className="h-4 w-4 mr-2" /> - RFQ 발송 ({shortListCount}) + RFQ 발송 ({selectedRows.length}) </> )} </Button> diff --git a/lib/rfq-last/vendor/vendor-detail-dialog.tsx b/lib/rfq-last/vendor/vendor-detail-dialog.tsx index 08288dd6..7946e371 100644 --- a/lib/rfq-last/vendor/vendor-detail-dialog.tsx +++ b/lib/rfq-last/vendor/vendor-detail-dialog.tsx @@ -595,6 +595,7 @@ export function VendorResponseDetailDialog({ <TableHead>단위</TableHead> <TableHead className="text-right">단가</TableHead> <TableHead className="text-right">금액</TableHead> + <TableHead>통화</TableHead> <TableHead>납기일</TableHead> </TableRow> </TableHeader> @@ -613,6 +614,9 @@ export function VendorResponseDetailDialog({ {new Intl.NumberFormat("ko-KR").format(item.totalPrice)} </TableCell> <TableCell> + {response?.pricing?.vendorCurrency || data.currency || item.currency} + </TableCell> + <TableCell> {item.vendorDeliveryDate ? format(new Date(item.vendorDeliveryDate), "MM-dd") : "-"} @@ -662,7 +666,7 @@ export function VendorResponseDetailDialog({ </div> </div> <div className="flex items-center gap-2"> - <Button + {/* <Button variant="ghost" size="sm" onClick={() => { @@ -671,7 +675,7 @@ export function VendorResponseDetailDialog({ }} > <Eye className="h-4 w-4" /> - </Button> + </Button> */} <Button variant="ghost" size="sm" |
