From 1c1c1019b6af72771358d387a2ae70ca965cd9f9 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 26 May 2025 04:25:47 +0000 Subject: (김준회) 아이템 리스트를 자재그룹으로 변경하고 PLM 인터페이스 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/items/table/items-table.tsx | 49 +++++++++++++++++++++++++++++++++++++---- 1 file changed, 45 insertions(+), 4 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 bbbafc2f..2bc1c913 100644 --- a/lib/items/table/items-table.tsx +++ b/lib/items/table/items-table.tsx @@ -73,18 +73,59 @@ export function ItemsTable({ promises }: ItemsTableProps) { * 4. Date and boolean types: Adds support for filtering by date ranges and boolean values. */ const advancedFilterFields: DataTableAdvancedFilterField[] = [ + { + id: "itemLevel", + label: "레벨", + type: "number", + }, { id: "itemCode", - label: "Item Code", + label: "자재그룹코드", type: "text", }, { id: "itemName", - label: "Item Name", + label: "자재그룹이름", type: "text", - }, { + }, + { id: "description", - label: "Description", + label: "상세", + type: "text", + }, + { + id: "parentItemCode", + label: "부모 아이템 코드", + 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: "baseUnitOfMeasure", + label: "기본단위", type: "text", }, ] -- cgit v1.2.3