feat(leave): add pending jobs tab to work-list page
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
All checks were successful
Build & Deploy on Dev / build (push) Successful in 2m53s
This commit is contained in:
parent
2355639f25
commit
6aa2709986
4 changed files with 295 additions and 0 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue