diff options
Diffstat (limited to 'lib/items/table/items-table.tsx')
| -rw-r--r-- | lib/items/table/items-table.tsx | 49 |
1 files changed, 45 insertions, 4 deletions
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 @@ -74,17 +74,58 @@ export function ItemsTable({ promises }: ItemsTableProps) { */ const advancedFilterFields: DataTableAdvancedFilterField<Item>[] = [ { + 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", }, ] |
