diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/itb/table/purchase-requests-table.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
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} > <div className="flex items-center gap-2"> <Button |
