feat(leave): add Processed Late tab to work-list
This commit is contained in:
parent
e9bcebee6d
commit
514de15f09
5 changed files with 542 additions and 3 deletions
|
|
@ -0,0 +1,6 @@
|
|||
interface FormDataProcess {
|
||||
startDate: Date | null;
|
||||
endDate: Date | null;
|
||||
}
|
||||
|
||||
export type { FormDataProcess };
|
||||
|
|
@ -85,4 +85,24 @@ interface FormDetail {
|
|||
checkInLocationName: string;
|
||||
checkOutLocationName: string;
|
||||
}
|
||||
export type { TableRows, DataResLog, DataResTime, TableRowsTime, FormDetail };
|
||||
|
||||
interface DataProcess {
|
||||
id: string;
|
||||
createdFullName: string;
|
||||
createdAt: Date | null;
|
||||
status: string;
|
||||
startDate: Date | null;
|
||||
endDate: Date | null;
|
||||
processingDate: Date | null;
|
||||
completedDate: Date | null;
|
||||
errorMessage: string | null;
|
||||
}
|
||||
|
||||
export type {
|
||||
TableRows,
|
||||
DataResLog,
|
||||
DataResTime,
|
||||
TableRowsTime,
|
||||
FormDetail,
|
||||
DataProcess,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue