summaryrefslogtreecommitdiff
path: root/config/vendorContactsColumnsConfig.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-09-26 09:57:24 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-09-26 09:57:24 +0000
commit8b23b471638a155fd1bfa3a8c853b26d9315b272 (patch)
tree47353e9dd342011cb2f1dcd24b09661707a8421b /config/vendorContactsColumnsConfig.ts
parentd62368d2b68d73da895977e60a18f9b1286b0545 (diff)
(대표님) 권한관리, 문서업로드, rfq첨부, SWP문서룰 등
(최겸) 입찰
Diffstat (limited to 'config/vendorContactsColumnsConfig.ts')
-rw-r--r--config/vendorContactsColumnsConfig.ts52
1 files changed, 30 insertions, 22 deletions
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