summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/menuConfig.ts10
-rw-r--r--config/vendorContactsColumnsConfig.ts52
2 files changed, 35 insertions, 27 deletions
diff --git a/config/menuConfig.ts b/config/menuConfig.ts
index afc22b1d..3511ce84 100644
--- a/config/menuConfig.ts
+++ b/config/menuConfig.ts
@@ -474,11 +474,11 @@ export const mainNav: MenuSection[] = [
href: "/evcp/email-template",
groupKey: "groups.email"
},
- {
- titleKey: "menu.information_system.email_receiver",
- href: "/evcp/email-receiver",
- groupKey: "groups.email"
- },
+ // {
+ // titleKey: "menu.information_system.email_receiver",
+ // href: "/evcp/email-receiver",
+ // groupKey: "groups.email"
+ // },
{
titleKey: "menu.information_system.email_log",
href: "/evcp/email-log",
diff --git a/config/vendorContactsColumnsConfig.ts b/config/vendorContactsColumnsConfig.ts
index 744c3a7d..d3723af4 100644
--- a/config/vendorContactsColumnsConfig.ts
+++ b/config/vendorContactsColumnsConfig.ts
@@ -29,42 +29,50 @@ export interface VendorColumnConfig {
export const vendorContactsColumnsConfig: VendorColumnConfig[] = [
{
id: "contactName",
- label: "Contact Name",
- excelHeader: "Contact Name",
+ label: "담당자명",
+ excelHeader: "담당자명",
+ group: "기본 정보",
},
{
id: "contactPosition",
- label: "Contact Position",
- excelHeader: "Contact Position",
+ label: "직급",
+ excelHeader: "직급",
+ group: "기본 정보",
},
{
- id: "contactEmail",
- label: "Contact Email",
- excelHeader: "Contact Email",
+ id: "contactDepartment",
+ label: "부서",
+ excelHeader: "부서",
+ group: "기본 정보",
},
{
- id: "contactPhone",
- label: "Contact Phone",
- excelHeader: "Contact Phone",
- // type: "string[]", // 필요하면 추가
+ id: "contactTask",
+ label: "담당업무",
+ excelHeader: "담당업무",
+ group: "기본 정보",
+ },
+ {
+ id: "contactEmail",
+ label: "이메일",
+ excelHeader: "이메일",
+ group: "연락처",
},
- // 필요 시 createdAt도 조인해서 가져왔다면 아래처럼 추가
{
- id: "isPrimary",
- label: "isPrimary",
- excelHeader: "isPrimary",
- // group: "Metadata",
+ id: "contactPhone",
+ label: "전화번호",
+ excelHeader: "전화번호",
+ group: "연락처",
},
{
id: "createdAt",
- label: "Created At",
- excelHeader: "Created At",
- // group: "Metadata",
+ label: "등록일",
+ excelHeader: "등록일",
+ group: "시스템",
},
{
id: "updatedAt",
- label: "Updated At",
- excelHeader: "Updated At",
- // group: "Metadata",
+ label: "수정일",
+ excelHeader: "수정일",
+ group: "시스템",
},
]; \ No newline at end of file