[대상향] UserInfoSS 변경에 따른 프로필 출력내용 변경.
This commit is contained in:
parent
52bf47e489
commit
1eda1df54f
|
@ -65,9 +65,14 @@ export const decodeDataUser: ProtocolDecoder<DataUserResponse> = (
|
|||
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, {
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -159,7 +159,7 @@
|
|||
-->
|
||||
<li class="company">
|
||||
<dt class="division">회사</dt>
|
||||
<dd>{{ userInfo.workplace | ucapStringEmptycheck }}</dd>
|
||||
<dd>{{ userInfo.companyName | ucapStringEmptycheck }}</dd>
|
||||
</li>
|
||||
<li>
|
||||
<dt class="division">담당업무</dt>
|
||||
|
@ -167,15 +167,15 @@
|
|||
</li>
|
||||
<li>
|
||||
<dt>근무지</dt>
|
||||
<dd>근무지영역정보</dd>
|
||||
<dd>{{ userInfo.workplace | ucapStringEmptycheck }}</dd>
|
||||
</li>
|
||||
<li>
|
||||
<dt class="division">직무</dt>
|
||||
<dd>직무정보</dd>
|
||||
<dd>{{ userInfo.job | ucapStringEmptycheck }}</dd>
|
||||
</li>
|
||||
<li>
|
||||
<dt>거래처</dt>
|
||||
<dd>거래처정보</dd>
|
||||
<dd>{{ userInfo.customerInfo | ucapStringEmptycheck }}</dd>
|
||||
</li>
|
||||
<li>
|
||||
<dt class="division">이메일</dt>
|
||||
|
|
Loading…
Reference in New Issue
Block a user