[대상향] 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,
 | 
					      isPrivacyAgree: info[26] === 'Y' ? true : false,
 | 
				
			||||||
      isValidLogin: info[27] === 'Y' ? true : false,
 | 
					      isValidLogin: info[27] === 'Y' ? true : false,
 | 
				
			||||||
      employeeType: info[28] as EmployeeType,
 | 
					      employeeType: info[28] as EmployeeType,
 | 
				
			||||||
      workplace: info[29],
 | 
					
 | 
				
			||||||
 | 
					      // [daesang]
 | 
				
			||||||
 | 
					      companyName: info[29],
 | 
				
			||||||
      responsibilities: info[30],
 | 
					      responsibilities: info[30],
 | 
				
			||||||
      workstatus: info[31]
 | 
					      workstatus: info[31],
 | 
				
			||||||
 | 
					      job: info[32],
 | 
				
			||||||
 | 
					      customerInfo: info[33],
 | 
				
			||||||
 | 
					      workplace: info[34]
 | 
				
			||||||
    };
 | 
					    };
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
  return decodeProtocolMessage(message, {
 | 
					  return decodeProtocolMessage(message, {
 | 
				
			||||||
 | 
				
			|||||||
@ -62,10 +62,16 @@ export interface UserInfoSS {
 | 
				
			|||||||
  /** 임직원유형(s) */
 | 
					  /** 임직원유형(s) */
 | 
				
			||||||
  employeeType: EmployeeType;
 | 
					  employeeType: EmployeeType;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  /** 사업장 */
 | 
					  /** 회사 */
 | 
				
			||||||
  workplace?: string;
 | 
					  companyName?: string;
 | 
				
			||||||
  /** 담당업무 */
 | 
					  /** 담당업무 */
 | 
				
			||||||
  responsibilities?: string;
 | 
					  responsibilities?: string;
 | 
				
			||||||
  /** 업무 상태 */
 | 
					  /** 업무 상태 */
 | 
				
			||||||
  workstatus?: string;
 | 
					  workstatus?: string;
 | 
				
			||||||
 | 
					  /** SC직무 */
 | 
				
			||||||
 | 
					  job?: string;
 | 
				
			||||||
 | 
					  /** 거래처정보 */
 | 
				
			||||||
 | 
					  customerInfo?: string;
 | 
				
			||||||
 | 
					  /** 근무지 */
 | 
				
			||||||
 | 
					  workplace?: string;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
@ -159,7 +159,7 @@
 | 
				
			|||||||
    -->
 | 
					    -->
 | 
				
			||||||
      <li class="company">
 | 
					      <li class="company">
 | 
				
			||||||
        <dt class="division">회사</dt>
 | 
					        <dt class="division">회사</dt>
 | 
				
			||||||
        <dd>{{ userInfo.workplace | ucapStringEmptycheck }}</dd>
 | 
					        <dd>{{ userInfo.companyName | ucapStringEmptycheck }}</dd>
 | 
				
			||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <dt class="division">담당업무</dt>
 | 
					        <dt class="division">담당업무</dt>
 | 
				
			||||||
@ -167,15 +167,15 @@
 | 
				
			|||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <dt>근무지</dt>
 | 
					        <dt>근무지</dt>
 | 
				
			||||||
        <dd>근무지영역정보</dd>
 | 
					        <dd>{{ userInfo.workplace | ucapStringEmptycheck }}</dd>
 | 
				
			||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <dt class="division">직무</dt>
 | 
					        <dt class="division">직무</dt>
 | 
				
			||||||
        <dd>직무정보</dd>
 | 
					        <dd>{{ userInfo.job | ucapStringEmptycheck }}</dd>
 | 
				
			||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <dt>거래처</dt>
 | 
					        <dt>거래처</dt>
 | 
				
			||||||
        <dd>거래처정보</dd>
 | 
					        <dd>{{ userInfo.customerInfo | ucapStringEmptycheck }}</dd>
 | 
				
			||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <dt class="division">이메일</dt>
 | 
					        <dt class="division">이메일</dt>
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user