|
|
|
|
@ -19,7 +19,7 @@
|
|
|
|
|
<ion-label class="boldTxtNav">{{'replacementRoll, searchBy' | translate}}</ion-label>
|
|
|
|
|
</ion-list-header>
|
|
|
|
|
<ion-radio-group [(ngModel)]="searchBy" (ionChange)="onChangeSelect($event)">
|
|
|
|
|
<ion-row>
|
|
|
|
|
<ion-row class="top-radio-row">
|
|
|
|
|
<ion-col class="center">
|
|
|
|
|
<ion-radio value="1" checked></ion-radio>
|
|
|
|
|
<ion-label class="radio-label">{{'addAttach, name' | translate}}</ion-label>
|
|
|
|
|
@ -32,6 +32,11 @@
|
|
|
|
|
<ion-radio value="3" ></ion-radio>
|
|
|
|
|
<ion-label class="radio-label">{{'general, email' | translate}}</ion-label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
<ion-col>
|
|
|
|
|
<ion-radio value="4" ></ion-radio>
|
|
|
|
|
<ion-label class="radio-label">{{'replacementRoll, favorite' | translate}}</ion-label>
|
|
|
|
|
</ion-col>
|
|
|
|
|
|
|
|
|
|
</ion-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -59,7 +64,7 @@
|
|
|
|
|
<ion-textarea [(ngModel)]="userNote"></ion-textarea>
|
|
|
|
|
</ion-item>
|
|
|
|
|
</div>
|
|
|
|
|
<div [hidden]="isAnswer==true" *ngIf="actionHistory.length >0 && !userSelected && ReplacementList.length==0">
|
|
|
|
|
<div [hidden]="isAnswer==true" *ngIf="actionHistory.length >0 && !userSelected && ReplacementList.length==0 && searchBy != 4">
|
|
|
|
|
<div class="uk-margin">
|
|
|
|
|
{{'replacementRoll, related' | translate}}
|
|
|
|
|
</div>
|
|
|
|
|
@ -84,7 +89,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<br/>
|
|
|
|
|
<div [hidden]="isAnswer==true" *ngIf="favoriteUserList.length> 0 && !userSelected && ReplacementList.length ==0">
|
|
|
|
|
<div [hidden]="isAnswer==true" *ngIf="favoriteUserList.length> 0 && !userSelected && ReplacementList.length ==0 && searchBy ==4">
|
|
|
|
|
<div class="uk-margin">
|
|
|
|
|
{{'replacementRoll, favorite' | translate}}
|
|
|
|
|
</div>
|
|
|
|
|
@ -94,7 +99,7 @@
|
|
|
|
|
<div class="profileImageDiv">
|
|
|
|
|
|
|
|
|
|
<img *ngIf="employee.EMPLOYEE_IMAGE" class="empImgeRep" [src]="'data:image/png;base64,'+employee.EMPLOYEE_IMAGE">
|
|
|
|
|
<img *ngIf="employee.EMPLOYEE_IMAGE == null" class="empImgeRep" src="../assets/imgs/profile.png">
|
|
|
|
|
<img *ngIf="employee.EMPLOYEE_IMAGE == null || employee.EMPLOYEE_IMAGE==''" class="empImgeRep" src="../assets/imgs/profile.png">
|
|
|
|
|
<ion-label class="employee-details">
|
|
|
|
|
|
|
|
|
|
<span (click)="select(employee,i)">{{employee.EMPLOYEE_DISPLAY_NAME}}</span>
|
|
|
|
|
@ -135,9 +140,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
<ion-infinite-scroll (ionInfinite)="doInfinite($event)">
|
|
|
|
|
<!-- <ion-infinite-scroll (ionInfinite)="doInfinite($event)">
|
|
|
|
|
<ion-infinite-scroll-content></ion-infinite-scroll-content>
|
|
|
|
|
</ion-infinite-scroll>
|
|
|
|
|
</ion-infinite-scroll> -->
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|