diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-20 09:01:22 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-05-20 09:01:22 +0000 |
| commit | 45f4c426c98d86a251644a4858740bec989edf83 (patch) | |
| tree | b0a3f1ce6ac3e4493ee53c93ef33841c8eb34cfb /lib/items-tech/table/ship/items-table-toolbar-actions.tsx | |
| parent | 11f13979825d28180956fc27600176bfc47457e1 (diff) | |
(최겸) 기술영업 아이템리스트 수정 및 개발 0520
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.tsx | 4 |
1 files changed, 3 insertions, 1 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 6cae61af..677173d1 100644 --- a/lib/items-tech/table/ship/items-table-toolbar-actions.tsx +++ b/lib/items-tech/table/ship/items-table-toolbar-actions.tsx @@ -27,6 +27,7 @@ interface ShipbuildingItem { shipTypes: string; itemCode: string; itemName: string; + itemList: string | null; description: string | null; createdAt: Date; updatedAt: Date; @@ -73,7 +74,8 @@ export function ItemsTableToolbarActions({ table }: ItemsTableToolbarActionsProp { key: 'itemName', header: '아이템 명' }, { key: 'description', header: '설명' }, { key: 'workType', header: '기능(공종)' }, - { key: 'shipTypes', header: '선종' } + { key: 'shipTypes', header: '선종' }, + { key: 'itemList', header: '아이템 리스트' } ].filter(header => !excludeColumns.includes(header.key)); console.log("내보내기 헤더:", headers); |
