summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx')
-rw-r--r--lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx b/lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx
index 324312aa..f91adf96 100644
--- a/lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx
+++ b/lib/items-tech/table/top/offshore-top-table-toolbar-actions.tsx
@@ -24,10 +24,8 @@ interface OffshoreTopItem {
id: number;
itemId: number;
workType: "TM" | "TS" | "TE" | "TP";
- itemList1: string | null;
- itemList2: string | null;
- itemList3: string | null;
- itemList4: string | null;
+ itemList: string | null;
+ subItemList: string | null;
itemCode: string;
itemName: string;
description: string | null;
@@ -76,10 +74,8 @@ export function OffshoreTopTableToolbarActions({ table }: OffshoreTopTableToolba
{ key: 'itemName', header: '아이템 명' },
{ key: 'description', header: '설명' },
{ key: 'workType', header: '기능(공종)' },
- { key: 'itemList1', header: '아이템 리스트 1' },
- { key: 'itemList2', header: '아이템 리스트 2' },
- { key: 'itemList3', header: '아이템 리스트 3' },
- { key: 'itemList4', header: '아이템 리스트 4' }
+ { key: 'itemList', header: '아이템 리스트' },
+ { key: 'subItemList', header: '서브 아이템 리스트' },
].filter(header => !excludeColumns.includes(header.key));
console.log("내보내기 헤더:", headers);