EchoTex_Payroll/HRM.UI/ClientApp/src/app/payroll-ot/bonus-approval-self-service/bonus-approval-self-service.component.html

74 lines
3.6 KiB
HTML
Raw Normal View History

2024-10-14 10:01:49 +06:00
<div class="card card-w-title">
<div class="p-grid">
<div class="p-col-12">
<kendo-grid [data]=""
>
<kendo-grid-column field="headCount" title="Head Count">
</kendo-grid-column>
<kendo-grid-column field="bonusName" title="Bonus Name">
</kendo-grid-column>
<kendo-grid-column field="permanent" title="Permanent">
</kendo-grid-column>
<kendo-grid-column field="nonPermanent" title="Non Permanent">
</kendo-grid-column>
<kendo-grid-column field="total" title="Total">
</kendo-grid-column>
<kendo-grid-column field="incomeTax" title="Income Tax">
</kendo-grid-column>
<kendo-grid-column field="netPay" title="Net Pay">
</kendo-grid-column>
</kendo-grid>
</div>
<div class="p-col-12">
<h3>Workflow History:</h3>
</div>
<div class="p-col-12">
<kendo-grid [data]=""
>
<kendo-grid-column field="empNo" title="Employee No">
</kendo-grid-column>
<kendo-grid-column field="receiveDate" title="Receive Date">
</kendo-grid-column>
<kendo-grid-column field="status" title="Status">
</kendo-grid-column>
</kendo-grid>
</div>
<div class="p-col-12" align="right">
<button (click)="forNonPermanent()" class="ui-button-success" label="Bonus JV For Non Permanent" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 300px; background:#50AF47; color: white"
type="submit"></button>
<button (click)="forPermanent()" class="ui-button-success" label="Bonus JV For Permanent" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 300px; background:#50AF47; color: white"
type="submit"></button>
<button (click)="bonusRegister()" class="ui-button-success" label="Bonus Register" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 300px; background:#50AF47; color: white"
type="submit"></button>
</div>
<div class="p-col-12" align="right">
<button (click)="forNonPermanentExcel()" class="ui-button-success" label="Bonus JV For Non Permanent Excel" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 300px; background:#50AF47; color: white"
type="submit"></button>
<button (click)="forPermanentExcel()" class="ui-button-success" label="Bonus JV For Permanent Excel" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 300px; background:#50AF47; color: white"
type="submit"></button>
</div>
<div class="p-col-12">
<label>Remarks</label>
<textarea pInputTextarea style="width:100%"></textarea>
</div>
<div class="p-col-12" align="right">
<button (click)="onReject()" class="ui-button-success" label="Reject" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 100px; background: red; color: white"
type="submit"></button>
<button (click)="onApprove()" class="ui-button-success" label="Approve" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 100px; background:#50AF47; color: white"
type="submit"></button>
</div>
</div>
</div>