feat(leave): add Processed Late tab to work-list

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-04-01 11:09:33 +07:00
parent e9bcebee6d
commit 514de15f09
5 changed files with 542 additions and 3 deletions

View file

@ -0,0 +1,6 @@
interface FormDataProcess {
startDate: Date | null;
endDate: Date | null;
}
export type { FormDataProcess };

View file

@ -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,
};