|
|
|
|
@ -206,10 +206,10 @@ export class AppComponent implements OnInit {
|
|
|
|
|
this.user_image = user.EMPLOYEE_IMAGE ? 'data:image/png;base64,' + user.EMPLOYEE_IMAGE : '../assets/imgs/profile.png';
|
|
|
|
|
}
|
|
|
|
|
// this.User_Job_name = user.JOB_NAME;
|
|
|
|
|
let jobTitle = user.POSITION_NAME.split('.');
|
|
|
|
|
if (jobTitle && jobTitle.length > 1) {
|
|
|
|
|
this.User_Job_name = jobTitle[0] + " " + jobTitle[1];
|
|
|
|
|
}
|
|
|
|
|
let jobTitle = user.POSITION_NAME;
|
|
|
|
|
// if (jobTitle && jobTitle.length > 1) {
|
|
|
|
|
this.User_Job_name = jobTitle;
|
|
|
|
|
// }
|
|
|
|
|
//erm channel
|
|
|
|
|
// if (!CommonService.SKIP)
|
|
|
|
|
// this.cs.navigateForward('/erm-channel/survey');
|
|
|
|
|
|