ucap-doc/documents/업무/3월/4째주/0326.txt

33 lines
859 B
Plaintext
Raw Normal View History

2020-03-25 08:22:43 +00:00
조직도 프로필 싱크 (진행)
2020-03-26 00:09:54 +00:00
주소록 동기화 로그인 정보 로직 추가
묶음파일 다운로드 함수 수정(토큰 적용)
2020-03-25 08:22:43 +00:00
this.queryProtocolService
.dataUser({
divCd: 'OPENPROF',
seq: userSeq,
senderCompanyCode: this.loginRes.userInfo.companyCode,
senderEmployeeType: this.loginRes.userInfo.employeeType
})
.pipe(
take(1),
map(res => {
if (!!res && !!res.userInfo) {
const result = this.dialogService.open<
ProfileDialogComponent,
ProfileDialogData,
ProfileDialogResult
>(ProfileDialogComponent, {
data: {
userInfo: res.userInfo
}
});
if (!!result) {
if (!!result.closeEvent && result.closeEvent === 'CHAT') {
this.onCancel();
}
}
}
})
)
.subscribe();