diff options
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" ? [ |
