EchoTex_Payroll/HRM.UI/ClientApp/src/app/payroll-ot/overtime-separate-payment-from-salary/overtime-separate-payment-from-salary.component.html
2024-10-14 10:01:49 +06:00

37 lines
1.5 KiB
HTML

<form [formGroup]="separateForm">
<div class="p-grid">
<div class="p-col-8 p-offset-2 card box">
<h1>OT Process</h1>
<div class="p-grid">
<div class="p-col-2">
<kendo-label
[class]="'k-display-block'"
[for]="ot_Month"
[text]="'Process Month'"
>
</kendo-label>
</div>
<div class="p-col-10">
<kendo-datepicker
#ot_Month
[activeView]="'year'"
[bottomView]="'year'"
[format]="'MMMM yyyy'"
[value]="processMonth"
style="width: 100%"
>
</kendo-datepicker>
</div>
<div align="right" class="p-col-12 p-md-12">
<button (click)="onProcess()" class="ui-button-success" label="Process" pButton
style="margin-bottom: 10px; margin-right: 10px; width: 100px; background:#50AF47; color: white"
type="submit"></button>
<button (click)="onUndo()" [disabled]="disable" label="Undo" pButton
style="margin-bottom: 10px; width: 100px; background:cornflowerblue; color: white"
type="submit"></button>
</div>
</div>
</div>
</div>
</form>