63 lines
2.8 KiB
HTML
63 lines
2.8 KiB
HTML
|
|
<form [formGroup]="employeeForm" (ngSubmit)="onSubmit()">
|
||
|
|
<div class="card card-w-title" style="background-color:#F0F0F0">
|
||
|
|
<label style="font-weight:bold">Client Requested Employee</label>
|
||
|
|
|
||
|
|
<br /><br />
|
||
|
|
<div class="card">
|
||
|
|
<div class="p-col-12">
|
||
|
|
<!--<div class="p-grid">-->
|
||
|
|
<kendo-grid >
|
||
|
|
|
||
|
|
<kendo-grid-column field="clearnaceItem" title="Emp ID">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="subscription" title="Name">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="clearnaceBy" title="Designation">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="clearnaceDate" title="Department">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="adjustmentAmount" title="Last Working Date">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-command-column title="Action" width="220">
|
||
|
|
<ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
|
||
|
|
<button kendoGridEditCommand [primary]="true"><i class="pi pi-pencil"></i></button>
|
||
|
|
</ng-template>
|
||
|
|
</kendo-grid-command-column>
|
||
|
|
</kendo-grid>
|
||
|
|
</div>
|
||
|
|
<!--</div>-->
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="p-col-12 card">
|
||
|
|
<div class="p-grid">
|
||
|
|
<div class="p-col-12">
|
||
|
|
<app-employee-picker (ItemSelected)="GetSelectedEmployee($event)"></app-employee-picker>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="card">
|
||
|
|
<div class="p-col-12">
|
||
|
|
<!--<div class="p-grid">-->
|
||
|
|
<kendo-grid>
|
||
|
|
|
||
|
|
<kendo-grid-column field="clearnaceItem" title="Clearnace Item">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="subscription" title="Subscription">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="clearnaceBy" title="Clearnace By">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="clearnaceDate" title="Clearnace Date">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-column field="adjustmentAmount" title="Adjustment Amount">
|
||
|
|
</kendo-grid-column>
|
||
|
|
<kendo-grid-command-column title="Action" width="220">
|
||
|
|
<ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
|
||
|
|
<button kendoGridEditCommand [primary]="true"><i class="pi pi-pencil"></i></button>
|
||
|
|
</ng-template>
|
||
|
|
</kendo-grid-command-column>
|
||
|
|
</kendo-grid>
|
||
|
|
</div>
|
||
|
|
<!--</div>-->
|
||
|
|
</div>
|
||
|
|
</form>
|