fixed prod build issues

Fatima-Q2-June
umasoodch 5 years ago
parent 5ae2c2f170
commit c3f63b78e7

@ -156,7 +156,7 @@
<div class="my-ads" *ngIf="segment =='2'">
<ion-row>
<ion-item button (click)="testClick()">
<ion-item button>
<ion-thumbnail slot="start">
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAAAAAAALAAAAAABAAEAAAICTAEAOw==">
</ion-thumbnail>

@ -147,7 +147,7 @@
</div>
</div>
<div *ngIf="messageSuccess" class="succssfullMSG">
<div class="succssfullMSG">
<ion-col size="12">
<ion-icon class="succssfullIcon" name="checkmark"></ion-icon>
<!--filled-->
@ -156,7 +156,7 @@
</div>
</ion-content>
<ion-footer *ngIf="!messageSuccess">
<ion-footer>
<div class="noteInput" *ngIf="isAnswer== false && userSelected ==true">

@ -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();

@ -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) => {

@ -36,7 +36,7 @@
<ion-footer>
<div class="centerDiv">
<ion-button class="addEitOkButton" color="customnavy" ion-button (click)="validateEITTransaction()">
<ion-button class="addEitOkButton" color="customnavy" ion-button>
{{'vacation-rule, next-label' | translate}}</ion-button>
</div>
</ion-footer>

@ -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]
})

Loading…
Cancel
Save