feat(leave): add pending jobs tab to work-list page
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-06-29 16:39:36 +07:00
parent 2355639f25
commit 6aa2709986
4 changed files with 295 additions and 0 deletions

View file

@ -98,6 +98,26 @@ interface DataProcess {
errorMessage: string | null;
}
interface DataPendingJobs {
taskId: string;
keycloakUserId: string;
createdDate: string | Date;
processingDate: string | Date;
completedDate: string | Date;
status: string;
checkType: string;
checkInId: string;
errorMessage: string;
additionalData: string;
id: string;
createdAt: string | Date;
createdUserId: string;
lastUpdatedAt: string;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
}
export type {
TableRows,
DataResLog,
@ -105,4 +125,5 @@ export type {
TableRowsTime,
FormDetail,
DataProcess,
DataPendingJobs,
};