From 1eda1df54fdb3507324c2cfa7b221be68fe3cf6c Mon Sep 17 00:00:00 2001 From: leejinho Date: Thu, 26 Dec 2019 11:30:11 +0900 Subject: [PATCH] =?UTF-8?q?[=EB=8C=80=EC=83=81=ED=96=A5]=20UserInfoSS=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EC=97=90=20=EB=94=B0=EB=A5=B8=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=ED=95=84=20=EC=B6=9C=EB=A0=A5=EB=82=B4=EC=9A=A9=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/lib/protocols/data-user.ts | 9 +++++++-- .../src/lib/models/user-info-ss.ts | 10 ++++++++-- .../src/lib/components/profile.component.html | 8 ++++---- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/projects/ucap-webmessenger-daesang/src/lib/protocols/data-user.ts b/projects/ucap-webmessenger-daesang/src/lib/protocols/data-user.ts index 3773a261..87b1febb 100644 --- a/projects/ucap-webmessenger-daesang/src/lib/protocols/data-user.ts +++ b/projects/ucap-webmessenger-daesang/src/lib/protocols/data-user.ts @@ -65,9 +65,14 @@ export const decodeDataUser: ProtocolDecoder = ( isPrivacyAgree: info[26] === 'Y' ? true : false, isValidLogin: info[27] === 'Y' ? true : false, employeeType: info[28] as EmployeeType, - workplace: info[29], + + // [daesang] + companyName: info[29], responsibilities: info[30], - workstatus: info[31] + workstatus: info[31], + job: info[32], + customerInfo: info[33], + workplace: info[34] }; } return decodeProtocolMessage(message, { diff --git a/projects/ucap-webmessenger-protocol-query/src/lib/models/user-info-ss.ts b/projects/ucap-webmessenger-protocol-query/src/lib/models/user-info-ss.ts index c5131223..da6d1a4f 100644 --- a/projects/ucap-webmessenger-protocol-query/src/lib/models/user-info-ss.ts +++ b/projects/ucap-webmessenger-protocol-query/src/lib/models/user-info-ss.ts @@ -62,10 +62,16 @@ export interface UserInfoSS { /** 임직원유형(s) */ employeeType: EmployeeType; - /** 사업장 */ - workplace?: string; + /** 회사 */ + companyName?: string; /** 담당업무 */ responsibilities?: string; /** 업무 상태 */ workstatus?: string; + /** SC직무 */ + job?: string; + /** 거래처정보 */ + customerInfo?: string; + /** 근무지 */ + workplace?: string; } diff --git a/projects/ucap-webmessenger-ui-profile/src/lib/components/profile.component.html b/projects/ucap-webmessenger-ui-profile/src/lib/components/profile.component.html index 294ea121..ac470c43 100644 --- a/projects/ucap-webmessenger-ui-profile/src/lib/components/profile.component.html +++ b/projects/ucap-webmessenger-ui-profile/src/lib/components/profile.component.html @@ -159,7 +159,7 @@ -->
  • 회사
    -
    {{ userInfo.workplace | ucapStringEmptycheck }}
    +
    {{ userInfo.companyName | ucapStringEmptycheck }}
  • 담당업무
    @@ -167,15 +167,15 @@
  • 근무지
    -
    근무지영역정보
    +
    {{ userInfo.workplace | ucapStringEmptycheck }}
  • 직무
    -
    직무정보
    +
    {{ userInfo.job | ucapStringEmptycheck }}
  • 거래처
    -
    거래처정보
    +
    {{ userInfo.customerInfo | ucapStringEmptycheck }}
  • 이메일