From 280a2628df810dc157357e0e4d2ed8076d020a2c Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 15 Oct 2025 10:25:46 +0000 Subject: (임수민) itb 필터 수정 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/itb/table/purchase-requests-table.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/itb/table') diff --git a/lib/itb/table/purchase-requests-table.tsx b/lib/itb/table/purchase-requests-table.tsx index 88f27666..87323939 100644 --- a/lib/itb/table/purchase-requests-table.tsx +++ b/lib/itb/table/purchase-requests-table.tsx @@ -51,6 +51,7 @@ export function PurchaseRequestsTable({ promises }: PurchaseRequestsTableProps) enableAdvancedFilter: true, defaultPerPage: 10, defaultSort: [{ id: "createdAt", desc: true }], + shallow: false, }); const refreshData = () => { @@ -100,26 +101,31 @@ export function PurchaseRequestsTable({ promises }: PurchaseRequestsTableProps) { id: "requestCode", label: "요청번호", + type: "text", placeholder: "PR-2025-00001" }, { id: "requestTitle", label: "요청제목", + type: "text", placeholder: "요청 제목 검색" }, { id: "projectName", label: "프로젝트명", + type: "text", placeholder: "프로젝트명 검색" }, { id: "packageName", label: "패키지명", + type: "text", placeholder: "패키지명 검색" }, { id: "status", label: "상태", + type: "select", options: [ { label: "작성중", value: "작성중" }, { label: "RFQ생성완료", value: "RFQ생성완료" }, @@ -128,14 +134,17 @@ export function PurchaseRequestsTable({ promises }: PurchaseRequestsTableProps) { id: "engPicName", label: "설계 담당자", + type: "text", placeholder: "담당자명 검색" }, { id: "purchasePicName", label: "구매 담당자", + type: "text", placeholder: "담당자명 검색" }, ]} + shallow={false} >