44 lines
576 B
TypeScript
44 lines
576 B
TypeScript
|
import {Component, OnInit} from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-bonus-approval-self-service',
|
||
|
templateUrl: './bonus-approval-self-service.component.html',
|
||
|
styleUrls: ['./bonus-approval-self-service.component.css']
|
||
|
})
|
||
|
export class BonusApprovalSelfServiceComponent implements OnInit {
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
|
||
|
ngOnInit() {
|
||
|
}
|
||
|
|
||
|
forPermanent() {
|
||
|
|
||
|
}
|
||
|
|
||
|
forNonPermanent() {
|
||
|
|
||
|
}
|
||
|
|
||
|
bonusRegister() {
|
||
|
|
||
|
}
|
||
|
|
||
|
forNonPermanentExcel() {
|
||
|
|
||
|
}
|
||
|
|
||
|
forPermanentExcel() {
|
||
|
|
||
|
}
|
||
|
|
||
|
onApprove() {
|
||
|
|
||
|
}
|
||
|
|
||
|
onReject() {
|
||
|
|
||
|
}
|
||
|
}
|