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

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

@ -34,11 +34,14 @@ export class WorkListReplacementItgComponent implements OnInit {
isAnswer: boolean = false; isAnswer: boolean = false;
favoriteUserList: [] = []; favoriteUserList: [] = [];
userNote: any; userNote: any;
public direction = '';
constructor(public vacationRuleService: VacationRuleServiceService, constructor(public vacationRuleService: VacationRuleServiceService,
public ts: TranslatorService, public ts: TranslatorService,
public cs: CommonService, public cs: CommonService,
public worklistService: WorklistService, public worklistService: WorklistService,
public modalController: ModalController) { } public modalController: ModalController) {
this.direction = TranslatorService.getCurrentDirection();
}
ngOnInit() { ngOnInit() {
this.getFavruite(); this.getFavruite();

@ -78,7 +78,7 @@ export class AddAddressComponent implements OnInit {
constructor( constructor(
public modalController: ModalController, public modalController: ModalController,
public cs: CommonService, public cs: CommonService,
private ts: TranslatorService, public ts: TranslatorService,
private eitService: EitService, private eitService: EitService,
public datePicker: DatePicker, public datePicker: DatePicker,
public profileService: ProfileService public profileService: ProfileService
@ -148,7 +148,8 @@ export class AddAddressComponent implements OnInit {
P_FUNCTION_NAME: this.selMenu.GetMenuEntriesList.FUNCTION_NAME, P_FUNCTION_NAME: this.selMenu.GetMenuEntriesList.FUNCTION_NAME,
P_SELECTED_EMPLOYEE_NUMBER: this.selEmp, P_SELECTED_EMPLOYEE_NUMBER: this.selEmp,
P_MENU_TYPE: this.menuType, 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 // P_USER_NAME:this.userName
}; };
this.profileService.getAddressDiffStructure(body).subscribe((result: any) => { this.profileService.getAddressDiffStructure(body).subscribe((result: any) => {

@ -36,7 +36,7 @@
<ion-footer> <ion-footer>
<div class="centerDiv"> <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> {{'vacation-rule, next-label' | translate}}</ion-button>
</div> </div>
</ion-footer> </ion-footer>

@ -19,7 +19,8 @@ import { from } from 'rxjs';
import { EditDetailProfileComponent } from './modal/edit-detail-profile/edit-detail-profile.component'; import { EditDetailProfileComponent } from './modal/edit-detail-profile/edit-detail-profile.component';
import { AddBasicDetailsComponent } from './add-basic-details/add-basic-details.component'; import { AddBasicDetailsComponent } from './add-basic-details/add-basic-details.component';
import { AddAddressComponent } from './add-address/add-address.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 = [ const routes: Routes = [
{ {
path: '', path: '',
@ -32,6 +33,14 @@ const routes: Routes = [
{ {
path: 'add-address', path: 'add-address',
component: AddAddressComponent component: AddAddressComponent
},
{
path: 'confirm-address',
component: ConfirmAddressComponent
},
{
path: 'confirm-basic',
component: ConfirmBasicDetailsComponent
} }
], ],
}, },
@ -99,7 +108,9 @@ const routes: Routes = [
ProfileImageComponent, ProfileImageComponent,
EditProfileComponent, EditProfileComponent,
PerformanceEvaluationComponent, PerformanceEvaluationComponent,
AddBasicDetailsComponent], AddBasicDetailsComponent,
ConfirmAddressComponent,
ConfirmBasicDetailsComponent],
entryComponents: [EditDetailProfileComponent], entryComponents: [EditDetailProfileComponent],
providers: [DatePicker] providers: [DatePicker]
}) })

Loading…
Cancel
Save