From c657ef972feeafff16ab0e07cb4771f7dd141ba0 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Thu, 10 Jul 2025 09:55:45 +0000 Subject: (대표님) 20250710 작업사항 - 평가 첨부, 로그인, SEDP 변경 요구사항 반영 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/items/table/items-table.tsx | 50 +++++++++++------------------------------ 1 file changed, 13 insertions(+), 37 deletions(-) (limited to 'lib/items/table/items-table.tsx') 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[] = [ { - 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 기반 자동 전환) -- cgit v1.2.3