From f9afa89a4f27283f5b115cd89ececa08145b5c89 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 29 Sep 2025 13:32:39 +0000 Subject: (최겸) 빌드 오류(오타), rfq필터 시트 용어 수정, 프로젝트 셀렉터 고정값 수정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/rfq-last/table/rfq-filter-sheet.tsx | 10 +++++----- lib/rfq-last/table/rfq-table.tsx | 2 -- 2 files changed, 5 insertions(+), 7 deletions(-) (limited to 'lib/rfq-last') diff --git a/lib/rfq-last/table/rfq-filter-sheet.tsx b/lib/rfq-last/table/rfq-filter-sheet.tsx index c0b6c0e2..ef0022c9 100644 --- a/lib/rfq-last/table/rfq-filter-sheet.tsx +++ b/lib/rfq-last/table/rfq-filter-sheet.tsx @@ -110,7 +110,7 @@ export function RfqFilterSheet({ async function onSubmit(data: RfqFilterFormValues) { startTransition(() => { try { - const newFilters = []; + const newFilters: any[] = []; // 기본 필드 if (data.rfqCode?.trim()) { @@ -635,7 +635,7 @@ export function RfqFilterSheet({ )} {/* ITB 필드 */} - {(rfqCategory === "itb" || rfqCategory === "all") && ( + {/* {(rfqCategory === "itb" || rfqCategory === "all") && ( <> - )} + )} */} {/* RFQ 필드 */} {(rfqCategory === "rfq" || rfqCategory === "all") && ( @@ -720,7 +720,7 @@ export function RfqFilterSheet({ field.onChange(date)} placeholder="시작일" /> @@ -736,7 +736,7 @@ export function RfqFilterSheet({ field.onChange(date)} placeholder="종료일" /> diff --git a/lib/rfq-last/table/rfq-table.tsx b/lib/rfq-last/table/rfq-table.tsx index 09bf5af4..9f78f578 100644 --- a/lib/rfq-last/table/rfq-table.tsx +++ b/lib/rfq-last/table/rfq-table.tsx @@ -285,8 +285,6 @@ export function RfqTable({ { id: "rfqTitle", label: "견적 제목", type: "text" }, ] as DataTableAdvancedFilterField[] : []), ...(rfqCategory === "itb" ? [ - { id: "projectCompany", label: "프로젝트 회사", type: "text" }, - { id: "projectSite", label: "프로젝트 사이트", type: "text" }, { id: "smCode", label: "SM 코드", type: "text" }, ] as DataTableAdvancedFilterField[] : []), ...(rfqCategory === "rfq" ? [ -- cgit v1.2.3