diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-29 11:33:37 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-29 11:33:37 +0000 |
| commit | 8438c05efc7a141e349c5d6416ad08156b4c0775 (patch) | |
| tree | d90080c294140db8082d0861c649845ec36c4cea /lib/rfq-last/table/rfq-table.tsx | |
| parent | c17b495c700dcfa040abc93a210727cbe72785f1 (diff) | |
(최겸) 구매 견적 이메일 추가, 미리보기, 첨부삭제, 기타 수정 등
Diffstat (limited to 'lib/rfq-last/table/rfq-table.tsx')
| -rw-r--r-- | lib/rfq-last/table/rfq-table.tsx | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/lib/rfq-last/table/rfq-table.tsx b/lib/rfq-last/table/rfq-table.tsx index 974662d9..09bf5af4 100644 --- a/lib/rfq-last/table/rfq-table.tsx +++ b/lib/rfq-last/table/rfq-table.tsx @@ -239,17 +239,17 @@ export function RfqTable({ }, [rfqCategory, setRowAction, router]); const filterFields: DataTableFilterField<RfqsLastView>[] = [ - { id: "rfqCode", label: "RFQ 코드" }, + { id: "rfqCode", label: "견적 No." }, { id: "projectName", label: "프로젝트명" }, { id: "itemName", label: "자재명" }, { id: "status", label: "상태" }, ]; const advancedFilterFields: DataTableAdvancedFilterField<RfqsLastView>[] = [ - { id: "rfqCode", label: "RFQ 코드", type: "text" }, + { id: "rfqCode", label: "견적 No.", type: "text" }, { id: "status", - label: "상태", + label: "견적상태", type: "select", options: [ { label: "RFQ 생성", value: "RFQ 생성" }, @@ -272,7 +272,16 @@ export function RfqTable({ { id: "dueDate", label: "마감일", type: "date" }, { id: "rfqSendDate", label: "발송일", type: "date" }, ...(rfqCategory === "general" ? [ - { id: "rfqType", label: "견적 유형", type: "text" }, + { + id: "rfqType", + label: "견적 유형", + type: "select", + options: [ + { label: "단가계약", value: "단가계약" }, + { label: "매각계약", value: "매각계약" }, + { label: "일반계약", value: "일반계약" }, + ] + }, { id: "rfqTitle", label: "견적 제목", type: "text" }, ] as DataTableAdvancedFilterField<RfqsLastView>[] : []), ...(rfqCategory === "itb" ? [ |
