Refactoring code module 04_registryPerson

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-18 17:24:21 +07:00
parent 1164d79122
commit eeb92dfb5d
46 changed files with 1935 additions and 2230 deletions

View file

@ -1,8 +1,8 @@
interface DetailData {
id: string;
typeLeave: string;
dateStartLeave: Date | null;
dateEndLeave: Date | null;
dateStartLeave: Date | null | string;
dateEndLeave: Date | null | string;
numLeave: number;
status: string;
reason: string;
@ -26,7 +26,8 @@ interface FormFilter {
interface DataOptionLeave {
id: string;
name: string;
totalLeave: number;
totalLeave?: number;
code?: string;
}
interface DataOption {