// 공통 컬럼 설정 export const techVendorItemsColumnsConfig = [ { id: "itemCode", label: "아이템 코드", excelHeader: "아이템 코드", type: "string", minWidth: 120, defaultWidth: 150, }, // { // id: "itemName", // label: "아이템명", // excelHeader: "아이템명", // type: "string", // minWidth: 200, // defaultWidth: 250, // }, ]; // 조선 타입 컬럼 설정 export const shipbuildingColumnsConfig = [ ...techVendorItemsColumnsConfig, { id: "workType", label: "공종", excelHeader: "공종", type: "string", minWidth: 120, defaultWidth: 150, }, { id: "shipTypes", label: "선종", excelHeader: "선종", type: "string", minWidth: 150, defaultWidth: 200, }, { id: "itemList", label: "아이템 리스트", excelHeader: "아이템 리스트", type: "string", minWidth: 200, defaultWidth: 300, }, { id: "createdAt", label: "생성일", excelHeader: "생성일", type: "date", minWidth: 120, defaultWidth: 150, }, { id: "updatedAt", label: "수정일", excelHeader: "수정일", type: "date", minWidth: 120, defaultWidth: 150, }, ]; // 해양 TOP 타입 컬럼 설정 export const offshoreTopColumnsConfig = [ ...techVendorItemsColumnsConfig, { id: "workType", label: "공종", excelHeader: "공종", type: "string", minWidth: 120, defaultWidth: 150, }, { id: "itemList", label: "아이템 리스트", excelHeader: "아이템 리스트", type: "string", minWidth: 200, defaultWidth: 300, }, { id: "subItemList", label: "서브아이템 리스트", excelHeader: "서브아이템 리스트", type: "string", minWidth: 200, defaultWidth: 300, }, { id: "createdAt", label: "생성일", excelHeader: "생성일", type: "date", minWidth: 120, defaultWidth: 150, }, { id: "updatedAt", label: "수정일", excelHeader: "수정일", type: "date", minWidth: 120, defaultWidth: 150, }, ]; // 해양 HULL 타입 컬럼 설정 export const offshoreHullColumnsConfig = [ ...techVendorItemsColumnsConfig, { id: "workType", label: "공종", excelHeader: "공종", type: "string", minWidth: 120, defaultWidth: 150, }, { id: "itemList", label: "아이템 리스트", excelHeader: "아이템 리스트", type: "string", minWidth: 200, defaultWidth: 300, }, { id: "subItemList", label: "서브아이템 리스트", excelHeader: "서브아이템 리스트", type: "string", minWidth: 200, defaultWidth: 300, }, { id: "createdAt", label: "생성일", excelHeader: "생성일", type: "date", minWidth: 120, defaultWidth: 150, }, { id: "updatedAt", label: "수정일", excelHeader: "수정일", type: "date", minWidth: 120, defaultWidth: 150, }, ];