Refactoring code module 04_registryPerson
This commit is contained in:
parent
1164d79122
commit
eeb92dfb5d
46 changed files with 1935 additions and 2230 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue