summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/table/ship/items-table-toolbar-actions.tsx')
-rw-r--r--lib/items-tech/table/ship/items-table-toolbar-actions.tsx9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/items-tech/table/ship/items-table-toolbar-actions.tsx b/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
index e58ba135..29995327 100644
--- a/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
+++ b/lib/items-tech/table/ship/items-table-toolbar-actions.tsx
@@ -23,7 +23,7 @@ import { ImportItemButton } from "../import-excel-button"
interface ShipbuildingItem {
id: number;
itemId: number;
- workType: "기장" | "전장" | "선실" | "배관" | "철의";
+ workType: "기장" | "전장" | "선실" | "배관" | "철의" | "선체";
shipTypes: string;
itemCode: string;
itemName: string;
@@ -70,12 +70,11 @@ export function ItemsTableToolbarActions({ table }: ItemsTableToolbarActionsProp
// 필요한 헤더 직접 정의 (필터링 문제 해결)
const headers = [
- { key: 'itemCode', header: '아이템 코드' },
- { key: 'itemName', header: '아이템 명' },
- { key: 'description', header: '설명' },
+ { key: 'itemCode', header: '자재 그룹' },
{ key: 'workType', header: '기능(공종)' },
{ key: 'shipTypes', header: '선종' },
- { key: 'itemList', header: '아이템 리스트' }
+ { key: 'itemList', header: '자재명' },
+ { key: 'subItemList', header: '자재명(상세)' },
].filter(header => !excludeColumns.includes(header.key));
console.log("내보내기 헤더:", headers);