summaryrefslogtreecommitdiff
path: root/lib/items/table/items-table.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-05-26 04:25:47 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-05-26 04:25:47 +0000
commit1c1c1019b6af72771358d387a2ae70ca965cd9f9 (patch)
tree6b1204684e7b52cf7d40de37b9c58decc4fac38b /lib/items/table/items-table.tsx
parent0547ab2fe1701d84753d0e078bba718a79b07a0c (diff)
(김준회) 아이템 리스트를 자재그룹으로 변경하고 PLM 인터페이스 처리
Diffstat (limited to 'lib/items/table/items-table.tsx')
-rw-r--r--lib/items/table/items-table.tsx49
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",
},
]