diff --git a/Mohem/src/app/notification/work-list-replacement-itg/work-list-replacement-itg.component.ts b/Mohem/src/app/notification/work-list-replacement-itg/work-list-replacement-itg.component.ts
index 4f960ddf..5ee7bec2 100644
--- a/Mohem/src/app/notification/work-list-replacement-itg/work-list-replacement-itg.component.ts
+++ b/Mohem/src/app/notification/work-list-replacement-itg/work-list-replacement-itg.component.ts
@@ -34,11 +34,14 @@ export class WorkListReplacementItgComponent implements OnInit {
isAnswer: boolean = false;
favoriteUserList: [] = [];
userNote: any;
+ public direction = '';
constructor(public vacationRuleService: VacationRuleServiceService,
public ts: TranslatorService,
public cs: CommonService,
public worklistService: WorklistService,
- public modalController: ModalController) { }
+ public modalController: ModalController) {
+ this.direction = TranslatorService.getCurrentDirection();
+ }
ngOnInit() {
this.getFavruite();
diff --git a/Mohem/src/app/profile/add-address/add-address.component.ts b/Mohem/src/app/profile/add-address/add-address.component.ts
index d320f7bb..e9739fc7 100644
--- a/Mohem/src/app/profile/add-address/add-address.component.ts
+++ b/Mohem/src/app/profile/add-address/add-address.component.ts
@@ -78,7 +78,7 @@ export class AddAddressComponent implements OnInit {
constructor(
public modalController: ModalController,
public cs: CommonService,
- private ts: TranslatorService,
+ public ts: TranslatorService,
private eitService: EitService,
public datePicker: DatePicker,
public profileService: ProfileService
@@ -148,7 +148,8 @@ export class AddAddressComponent implements OnInit {
P_FUNCTION_NAME: this.selMenu.GetMenuEntriesList.FUNCTION_NAME,
P_SELECTED_EMPLOYEE_NUMBER: this.selEmp,
P_MENU_TYPE: this.menuType,
- P_SELECTED_RESP_ID: this.respID
+ P_SELECTED_RESP_ID: this.respID,
+ P_COUNTRY_CODE: 'SA'
// P_USER_NAME:this.userName
};
this.profileService.getAddressDiffStructure(body).subscribe((result: any) => {
diff --git a/Mohem/src/app/profile/add-basic-details/add-basic-details.component.html b/Mohem/src/app/profile/add-basic-details/add-basic-details.component.html
index 9b604048..e4082aa9 100644
--- a/Mohem/src/app/profile/add-basic-details/add-basic-details.component.html
+++ b/Mohem/src/app/profile/add-basic-details/add-basic-details.component.html
@@ -36,7 +36,7 @@
-
+
{{'vacation-rule, next-label' | translate}}
\ No newline at end of file
diff --git a/Mohem/src/app/profile/profile.module.ts b/Mohem/src/app/profile/profile.module.ts
index 46dc114d..f32b5a42 100644
--- a/Mohem/src/app/profile/profile.module.ts
+++ b/Mohem/src/app/profile/profile.module.ts
@@ -19,7 +19,8 @@ import { from } from 'rxjs';
import { EditDetailProfileComponent } from './modal/edit-detail-profile/edit-detail-profile.component';
import { AddBasicDetailsComponent } from './add-basic-details/add-basic-details.component';
import { AddAddressComponent } from './add-address/add-address.component';
-
+import { ConfirmAddressComponent } from './confirm-address/confirm-address.component';
+import { ConfirmBasicDetailsComponent } from './confirm-basic-details/confirm-basic-details.component';
const routes: Routes = [
{
path: '',
@@ -32,6 +33,14 @@ const routes: Routes = [
{
path: 'add-address',
component: AddAddressComponent
+ },
+ {
+ path: 'confirm-address',
+ component: ConfirmAddressComponent
+ },
+ {
+ path: 'confirm-basic',
+ component: ConfirmBasicDetailsComponent
}
],
},
@@ -99,7 +108,9 @@ const routes: Routes = [
ProfileImageComponent,
EditProfileComponent,
PerformanceEvaluationComponent,
- AddBasicDetailsComponent],
+ AddBasicDetailsComponent,
+ ConfirmAddressComponent,
+ ConfirmBasicDetailsComponent],
entryComponents: [EditDetailProfileComponent],
providers: [DatePicker]
})