summaryrefslogtreecommitdiff
path: root/config/menuConfig.ts
blob: 9e054433280cc1952e1203bd66bc3cddee4cd4a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
export interface MenuItem {
  title: string;
  href: string;
  description?: string;
  label?: string;
  disabled?: boolean;
}

export interface MenuSection {
  title: string;
  items: MenuItem[];
}

export const mainNav: MenuSection[] = [

  {
    title: "기준 정보 관리",
    items: [
      {
        title: "아이템 리스트",
        href: "/evcp/items",
        description: "견적, 입찰, 계약에서 사용되는 아이템 리스트",
      },
      {
        title: "견적번호 관리",
        href: "/evcp/estimatenumber",
        description: "견적(RFQ) 생성 시 부여하는 일련번호 체계를 관리",
      },
      {
        title: "PQ(Pre-Qualification) 정보",
        href: "/evcp/pq-criteria",
        description: "PQ 항목 등을 관리",
      },
      {
        title: "Object Class",
        href: "/evcp/equip-class",
        description: "Equipment Class 리스트",
      },
      {
        title: "Tag Numbering",
        href: "/evcp/tag-numbering",
        description: "Tag Numbering을 위한 기준 정보",
      },
      {
        title: "Form 리스트",
        href: "/evcp/form-list",
        description: "벤더 데이터 입력을 위한 Form 리스트 확인",
      },



    ],
  },
  {
    title: "벤더 관리",
    items: [
      {
        title: "벤더 초청 관리",
        href: "/evcp/vendor-candidates",
        description: "수집활동을 통해 발굴한 벤더를 등록하고 관리하며 초청할 수 있음",
      },
      {
        title: "벤더 리스트",
        href: "/evcp/vendors",
        description: "업체에 대한 요약 정보를 출력",
      },
      {
        title: "벤더 실사",
        href: "/evcp/vendor-investigation",
        description: "실사가 필요한 벤더에 대한 일정 및 실사 내용 관리",
      },
      {
        title: "벤더 평가 기준 설정",
        href: "/evcp/evaluationmetrics",
        description: "품질, 납기, 가격 경쟁력, AS 대응력 설정",
      },
      {
        title: "벤더 정기 평가",
        href: "/evcp/evaluation",
        description: "벤더 평가를 실행",
      },
      {
        title: "벤더 Prequalification",
        href: "/evcp/pq",
        description: "벤더의 제출 PQ를 확인하고 통과 여부를 결정",
      },
      // {
      //   title: "벤더 계약 정보",
      //   href: "/evcp/vendorcontract",
      //   description: "업체별 계약 정보를 출력",
      // },
    ],
  },

  {
    title: "기술 영업", 
    items: [
      {
        title: "Budgetary Quote",
        href: "/evcp/budgetary",
        description: "RFQ 작성을 할 수 있고 현황을 파악",
      },
      {
        title: "기술(품질) 평가 (TBE) - Budgetary Quote",
        href: "/evcp/bqtbe",
        description: "사양 충족 여부, 품질 요건 확인",
      },
      {
        title: "상업(가격) 평가 (CBE) - Budgetary Quote",
        href: "/evcp/bqcbe",
        description: "가격(네고), 납기, 계약조건(Incoterms 등) 종합 검토/CBE Report 작성",
      },

    ]
  },
  {
    title: "구매 관리",
    items: [

      {
        title: "RFQ",
        href: "/evcp/rfq",
        description: "생성된 견적을 발행하고 관리",
      },
      {
        title: "입찰 관리",
        href: "/evcp/bid",
        description: "생성된 입찰을 발행하고 관리",
      },
      {
        title: "기술(품질) 평가 (TBE)",
        href: "/evcp/tbe",
        description: "S-EDP로부터 생성된 TBE와 업체의 응답에 대한 이력 관리",
      },
      {
        title: "상업(가격) 평가 (CBE)",
        href: "/evcp/cbe",
        description: "가격(네고), 납기, 계약조건(Incoterms 등) 종합 검토/CBE Report 작성",
      },
      {
        title: "PO 발행",
        href: "/evcp/po",
        description: "PO(구매 발주서) 확인/서명 요청/계약 내역 저장",
      },
      {
        title: "변경 PO 발행",
        href: "/evcp/poa",
        description: "변경 PO(구매 발주서) 생성/서명 요청/계약 내역 저장",
      },

    ],
  },

  {
    title: "KPI 및 Report",
    items: [
      {
        title: "KPI",
        href: "/evcp/kpi",
        description:
          "벤더별 성과지표, 기술 데이터 입력 정확도 등 KPI 설정 및 모니터링",
      },
      {
        title: "Report & Dashboard",
        href: "/evcp/report",
        description:
          "프로젝트별, 벤더별 구매/품질/설계 데이터 성과 보고서, 대시보드",
      },
      {
        title: "기술 스펙 품질 분석",
        href: "/evcp/analysis",
        description:
          "누락 빈도, 수정 횟수, 기준정보와의 일치도, 재작업 발생률 등 기술 데이터 품질 지표 추적",
      },
    ],
  },
];

export const additionalNav: MenuItem[] = [
  {
    title: "Q&A",
    href: "/evcp/qna",
  },
  {
    title: "FAQ",
    href: "/evcp/faq",
  },
  {
    title: "시스템 설정",
    href: "/evcp/system",
  },
];

export const mainNavVendor: MenuSection[] = [

  {
    title: "구매 관리",
    items: [
      {
        title: "RFQ",
        href: `/partners/rfq`,
        description: "견적 요청에 대한 응답 작성",
      },
      {
        title: "RFB",
        href: `/partners/rfb`,
        description: "입찰 요청에 대한 응답 작성",
      },
      {
        title: "TBE",
        href: `/partners/tbe`,
        description: "TBE 요청에 대한 응답 작성",
      },
      {
        title: "PO",
        href: `/partners/po`,
        description: "발주 리스트 확인 및 전자서명",
      },
      {
        title: "PO Amendment",
        href: `/partners/poa`,
        description: "발주 리스트 확인 및 전자서명",
      },
    ],
  },
  {
    title: "Engineering",
    items: [
      {
        title: "데이터 입력",
        href: `/partners/vendor-data`,
        description: "기준 정보에 입각한 벤더 데이터 입력",
      },
      {
        title: "데이터 리스트",
        href: `/partners/vendor-data-list`,
        description: "입력된 벤더 데이터를 도서/문서와 연계하여 리스트하여 출력",
      },
      {
        title: "문서/도서 리스트",
        href: `/partners/document-list`,
        description: "벤더의 제출 도서/문서의 리스트를 생성하고 관리",
      },
      {
        title: "문서/도서 업로드",
        href: `/partners/documents`,
        description: "벤더의 제출 도서/문서의 업로드 및 뷰어를 통한 열람 제공, 제출 문서를 생성",
      },
    ],
  },

];



export const additionalNavVendor: MenuItem[] = [

  {
    title: "Transmittal",
    href: "/partners/tr",
  },

  {
    title: "Dashboard",
    href: "/partners/dashboard",
  },
  {
    title: "Q&A",
    href: "/partners/qna",
  },
  {
    title: "FAQ",
    href: "/partners/faq",
  },
  {
    title: "시스템 설정",
    href: "/partners/system",
  },
  {
    title: "Vendor Info",
    href: "/partners/info",
  },
];