|
|
|
|
@ -10,20 +10,27 @@
|
|
|
|
|
<ion-list [hidden]="isAnswer==true">
|
|
|
|
|
<ion-item>
|
|
|
|
|
<ion-label class="boldTxtNav">{{'replacementRoll, searchBy' | translate}}</ion-label>
|
|
|
|
|
<ion-select okText='{{"general.ok" | translate }}' cancelText='{{"general.cancel" | translate }}'
|
|
|
|
|
<ion-select okText='{{"general, ok" | translate }}' cancelText='{{"general, cancel" | translate }}'
|
|
|
|
|
[(ngModel)]="searchBy">
|
|
|
|
|
<ion-select-option value="1" selected="true">{{'addAttach, name' | translate}}</ion-select-option>
|
|
|
|
|
<ion-select-option value="2">{{'login, username' | translate}}</ion-select-option>
|
|
|
|
|
<ion-select-option value="3">{{'general, email' | translate}}</ion-select-option>
|
|
|
|
|
</ion-select>
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
<ion-item>
|
|
|
|
|
<ion-input [(ngModel)]="inputSearch" placeholder='{{"general, search" | translate}}'></ion-input>
|
|
|
|
|
<button ion-button icon-only (click)="getreplacmentemployee()" clear type="button" item-end>
|
|
|
|
|
|
|
|
|
|
<!-- <button ion-button icon-only (click)="getreplacmentemployee()" clear type="button" item-end>
|
|
|
|
|
<ion-icon name="search"></ion-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</button> -->
|
|
|
|
|
|
|
|
|
|
<ion-button style="width: 19%;" button-type="clear" (click)="getreplacmentemployee()" item-end>
|
|
|
|
|
<ion-icon slot="icon-only" name="search"></ion-icon>
|
|
|
|
|
</ion-button>
|
|
|
|
|
|
|
|
|
|
</ion-item>
|
|
|
|
|
|
|
|
|
|
<!-- <ion-item>
|
|
|
|
|
<ion-label>
|
|
|
|
|
{{selEmpName}}
|
|
|
|
|
@ -48,12 +55,14 @@
|
|
|
|
|
|
|
|
|
|
<ion-item [hidden]="isAnswer==true">
|
|
|
|
|
<!-- <ion-list *ngIf="ReplacementList"> -->
|
|
|
|
|
<ion-list radio-group [(ngModel)]="selEmp" *ngIf="ReplacementList">
|
|
|
|
|
<ion-item *ngFor="let employee of ReplacementList;let i=index;">
|
|
|
|
|
<ion-label><span class="boldTxt">{{employee.EMPLOYEE_DISPLAY_NAME}}</span> <br>{{employee.USER_NAME}}<br>
|
|
|
|
|
{{employee.EMAIL_ADDRESS}}</ion-label>
|
|
|
|
|
<ion-radio value="{{i}}"></ion-radio>
|
|
|
|
|
</ion-item>
|
|
|
|
|
<ion-list *ngIf="ReplacementList">
|
|
|
|
|
<ion-radio-group mode="md" [(ngModel)]="selEmp">
|
|
|
|
|
<ion-item *ngFor="let employee of ReplacementList;let i=index;">
|
|
|
|
|
<ion-label><span class="boldTxt">{{employee.EMPLOYEE_DISPLAY_NAME}}</span> <br>{{employee.USER_NAME}}<br>
|
|
|
|
|
{{employee.EMAIL_ADDRESS}}</ion-label>
|
|
|
|
|
<ion-radio value="{{i}}"></ion-radio>
|
|
|
|
|
</ion-item>
|
|
|
|
|
</ion-radio-group>
|
|
|
|
|
</ion-list>
|
|
|
|
|
|
|
|
|
|
<ion-infinite-scroll (ionInfinite)="doInfinite($event)">
|
|
|
|
|
|