diff options
Diffstat (limited to 'config/menuConfig.ts')
| -rw-r--r-- | config/menuConfig.ts | 62 |
1 files changed, 42 insertions, 20 deletions
diff --git a/config/menuConfig.ts b/config/menuConfig.ts index 9e054433..17ca0e13 100644 --- a/config/menuConfig.ts +++ b/config/menuConfig.ts @@ -4,51 +4,63 @@ export interface MenuItem { description?: string; label?: string; disabled?: boolean; + icon?: string; // 아이콘 이름 (Lucide 아이콘) + group?: string; // 소속 그룹 } export interface MenuSection { title: string; items: MenuItem[]; + useGrouping?: boolean; // 그룹핑 사용 여부 } export const mainNav: MenuSection[] = [ - { title: "기준 정보 관리", + useGrouping: true, // 그룹핑 적용 items: [ { + title: "프로젝트 리스트", + href: "/evcp/projects", + description: "MDG에서 받은 프로젝트 리스트", + // icon: "Briefcase", + group: "기본 정보" + }, + { title: "아이템 리스트", href: "/evcp/items", description: "견적, 입찰, 계약에서 사용되는 아이템 리스트", - }, - { - title: "견적번호 관리", - href: "/evcp/estimatenumber", - description: "견적(RFQ) 생성 시 부여하는 일련번호 체계를 관리", + // icon: "ListTodo", + group: "기본 정보" }, { title: "PQ(Pre-Qualification) 정보", href: "/evcp/pq-criteria", description: "PQ 항목 등을 관리", + // icon: "ClipboardCheck", + group: "기본 정보" }, { title: "Object Class", href: "/evcp/equip-class", description: "Equipment Class 리스트", + // icon: "Database", + group: "기술 정보" }, { title: "Tag Numbering", href: "/evcp/tag-numbering", description: "Tag Numbering을 위한 기준 정보", + // icon: "Tag", + group: "기술 정보" }, { title: "Form 리스트", href: "/evcp/form-list", description: "벤더 데이터 입력을 위한 Form 리스트 확인", + // icon: "FileCheck", + group: "기술 정보" }, - - - ], }, { @@ -84,16 +96,10 @@ export const mainNav: MenuSection[] = [ href: "/evcp/pq", description: "벤더의 제출 PQ를 확인하고 통과 여부를 결정", }, - // { - // title: "벤더 계약 정보", - // href: "/evcp/vendorcontract", - // description: "업체별 계약 정보를 출력", - // }, ], }, - { - title: "기술 영업", + title: "기술 영업", items: [ { title: "Budgetary Quote", @@ -110,47 +116,63 @@ export const mainNav: MenuSection[] = [ href: "/evcp/bqcbe", description: "가격(네고), 납기, 계약조건(Incoterms 등) 종합 검토/CBE Report 작성", }, - ] }, { title: "구매 관리", + useGrouping: true, // 그룹핑 적용 items: [ - + { + title: "Budgetary RFQ", + href: "/evcp/budgetary-rfq", + description: "예산이나 내정가를 산정하기 위해 견적을 요청하고 관리", + // icon: "FileText", + group: "견적/입찰 관리" + }, { title: "RFQ", href: "/evcp/rfq", description: "생성된 견적을 발행하고 관리", + // icon: "FileText", + group: "견적/입찰 관리" }, { title: "입찰 관리", href: "/evcp/bid", description: "생성된 입찰을 발행하고 관리", + // icon: "GanttChart", + group: "견적/입찰 관리" }, { title: "기술(품질) 평가 (TBE)", href: "/evcp/tbe", description: "S-EDP로부터 생성된 TBE와 업체의 응답에 대한 이력 관리", + // icon: "ClipboardCheck", + group: "평가 관리" }, { title: "상업(가격) 평가 (CBE)", href: "/evcp/cbe", description: "가격(네고), 납기, 계약조건(Incoterms 등) 종합 검토/CBE Report 작성", + // icon: "DollarSign", + group: "평가 관리" }, { title: "PO 발행", href: "/evcp/po", description: "PO(구매 발주서) 확인/서명 요청/계약 내역 저장", + // icon: "FileSignature", + group: "발주 관리" }, { title: "변경 PO 발행", href: "/evcp/poa", description: "변경 PO(구매 발주서) 생성/서명 요청/계약 내역 저장", + // icon: "FileEdit", + group: "발주 관리" }, - ], }, - { title: "KPI 및 Report", items: [ |
