From c6f3161eba9255fc5fb0d5d625dd37a43f5ee192 Mon Sep 17 00:00:00 2001 From: Mohamed Mekawy Date: Wed, 1 Apr 2020 16:39:02 +0300 Subject: [PATCH] handle accural ticket balance --- Mohem/src/app/eit/eit-list/eit-list.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mohem/src/app/eit/eit-list/eit-list.component.ts b/Mohem/src/app/eit/eit-list/eit-list.component.ts index 144955aa..346c46ab 100644 --- a/Mohem/src/app/eit/eit-list/eit-list.component.ts +++ b/Mohem/src/app/eit/eit-list/eit-list.component.ts @@ -110,7 +110,7 @@ export class EitListComponent implements OnInit { getUserDetails(){ this.authService.loadAuthenticatedUser().subscribe((user: AuthenticatedUser) => { if (user) { - this.emp_no=user.EMPLOYEE_NUMBER; + // this.emp_no=user.EMPLOYEE_NUMBER; } }); @@ -124,7 +124,7 @@ export class EitListComponent implements OnInit { let todayDate = month + '/' + day + '/' + year; let effectiveDate = todayDate; const request = { - P_SELECTED_EMPLOYEE_NUMBER: this.emp_no, + P_SELECTED_EMPLOYEE_NUMBER: this.selEmp, P_EFFECTIVE_DATE: effectiveDate }; this.accrualService