75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
|
lf
|
||
|
ds
|
||
|
window close 실행 안되는 이슈
|
||
|
흰화면 이슈
|
||
|
websocket factory가 실행되어 있고
|
||
|
crm-pro
|
||
|
web projects 구성
|
||
|
@ucap-ng-ui/viewer
|
||
|
@domain-chat
|
||
|
@domain-status
|
||
|
|
||
|
@ucap/domain-status
|
||
|
@ucap/domain-organization
|
||
|
|
||
|
companyCode: appUserInfo.companyCode,
|
||
|
companyGroupType: appUserInfo.companyGroupType,
|
||
|
loginId: appUserInfo.loginId,
|
||
|
loginPw: appUserInfo.loginPw
|
||
|
},
|
||
|
rememberMe: appUserInfo.rememberMe,
|
||
|
autoLogin: true
|
||
|
|
||
|
|
||
|
|
||
|
map((res) => {
|
||
|
if (res.statusCode === StatusCode.Success) {
|
||
|
this.store.dispatch(CompanyStore.companyListSuccess(res));
|
||
|
resolve(false);
|
||
|
} else {
|
||
|
this.store.dispatch(
|
||
|
CompanyStore.companyListFailure({ error: 'Failed' })
|
||
|
);
|
||
|
resolve(true);
|
||
|
}
|
||
|
}),
|
||
|
|
||
|
// this.externalApiService
|
||
|
// .companyList({
|
||
|
// companyGroupCode: environment.companyConfig.companyGroupCode
|
||
|
// } as CompanyListRequest)
|
||
|
// .pipe(
|
||
|
// take(1),
|
||
|
// catchError((error) => {
|
||
|
// this.ngZone.run(() => {
|
||
|
// this.dialogService.open<
|
||
|
// AlertDialogComponent,
|
||
|
// AlertDialogData,
|
||
|
// AlertDialogResult
|
||
|
// >(AlertDialogComponent, {
|
||
|
// panelClass: 'miniSize-dialog',
|
||
|
// data: {
|
||
|
// title: this.translateService.instant(
|
||
|
// 'accounts.errors.loginFailed'
|
||
|
// ),
|
||
|
// html: this.translateService.instant(
|
||
|
// 'accounts.errors.networkFailedAndRetry'
|
||
|
// )
|
||
|
// }
|
||
|
// });
|
||
|
// });
|
||
|
// resolve(true);
|
||
|
// return of(error);
|
||
|
// })
|
||
|
// )
|
||
|
// .subscribe((res) => {
|
||
|
// if (res.statusCode === StatusCode.Success) {
|
||
|
// this.store.dispatch(CompanyStore.companyListSuccess(res));
|
||
|
// resolve(false);
|
||
|
// } else {
|
||
|
// this.store.dispatch(
|
||
|
// CompanyStore.companyListFailure({ error: 'Failed' })
|
||
|
// );
|
||
|
// resolve(true);
|
||
|
// }
|
||
|
// });
|