diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-10 09:55:45 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-10 09:55:45 +0000 |
| commit | c657ef972feeafff16ab0e07cb4771f7dd141ba0 (patch) | |
| tree | befabd884b00d3cc632c628b3e3810f61cc9f38d /lib/items/table/items-table.tsx | |
| parent | b8a03c9d130435a71c5d6217d06ccb0beb9697e5 (diff) | |
(대표님) 20250710 작업사항 - 평가 첨부, 로그인, SEDP 변경 요구사항 반영
Diffstat (limited to 'lib/items/table/items-table.tsx')
| -rw-r--r-- | lib/items/table/items-table.tsx | 50 |
1 files changed, 13 insertions, 37 deletions
diff --git a/lib/items/table/items-table.tsx b/lib/items/table/items-table.tsx index 92f805eb..8baaf69c 100644 --- a/lib/items/table/items-table.tsx +++ b/lib/items/table/items-table.tsx @@ -59,60 +59,36 @@ export function ItemsTable({ promises }: ItemsTableProps) { const advancedFilterFields: DataTableAdvancedFilterField<Item>[] = [ { - id: "itemLevel", - label: "레벨", - type: "number", - }, - { - id: "itemCode", - label: "자재그룹코드", + id: "ProjectNo", + label: "Project No", type: "text", }, { - id: "itemName", - label: "자재그룹이름", + id: "itemCode", + label: "PKG Code(PK)", type: "text", }, { id: "description", - label: "상세", + label: "PKG Code Decription", type: "text", }, { - id: "parentItemCode", - label: "부모 아이템 코드", + id: "packageCode", + label: "PKG Code", type: "text", }, { - id: "deleteFlag", - label: "삭제 플래그", - type: "text", - }, - { - id: "unitOfMeasure", - label: "단위", - type: "text", - }, - { - id: "steelType", - label: "강종", - type: "text", - }, - { - id: "gradeMaterial", - label: "등급 재질", - type: "text", - }, - { - id: "changeDate", - label: "변경일자", - type: "text", + id: "itemName", + label: "패키지 이름", + type: "text" }, { - id: "baseUnitOfMeasure", - label: "기본단위", + id: "smCode", + label: "SM Code", type: "text", }, + ] // 확장된 useDataTable 훅 사용 (pageSize 기반 자동 전환) |
