ปรับวันที่สืบสวน
This commit is contained in:
parent
c50e00968c
commit
fabc55134c
6 changed files with 348 additions and 323 deletions
|
|
@ -1,6 +1,6 @@
|
|||
interface FormData {
|
||||
id:string
|
||||
idComplaint:string
|
||||
id: string;
|
||||
idComplaint: string;
|
||||
investigationDetail: string;
|
||||
complaint: string;
|
||||
complaintdetail: string;
|
||||
|
|
@ -11,27 +11,37 @@ interface FormData {
|
|||
fileComplaint: File | null;
|
||||
investigationExtendStatus: boolean | null;
|
||||
investigationDateStart: Date | null;
|
||||
investigationDateEnd: Date|null;
|
||||
investigationDateEnd: Date | null;
|
||||
investigationDaysExtend: number | null;
|
||||
investigationStatusResult: string;
|
||||
investigationCauseText: string;
|
||||
complaintStatus:string
|
||||
result: string
|
||||
directors:object|null
|
||||
status:string
|
||||
disciplineInvestigateDocs:any
|
||||
disciplineInvestigateRelevantDocs:any
|
||||
documentFile:any|null
|
||||
respondentType:string
|
||||
organizationId:string
|
||||
persons:object|null
|
||||
complaintStatus: string;
|
||||
result: string;
|
||||
directors: object | null;
|
||||
status: string;
|
||||
disciplineInvestigateDocs: any;
|
||||
disciplineInvestigateRelevantDocs: any;
|
||||
documentFile: any | null;
|
||||
respondentType: string;
|
||||
organizationId: string;
|
||||
persons: object | null;
|
||||
investigationExtendHistory: ExtendHistoryObject[];
|
||||
}
|
||||
interface ArrayPerson{
|
||||
id:string
|
||||
name:string
|
||||
position:string
|
||||
email:string
|
||||
phone:string
|
||||
|
||||
interface ExtendHistoryObject {
|
||||
name: string;
|
||||
num: number;
|
||||
daysExtend: number | null;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
|
||||
interface ArrayPerson {
|
||||
id: string;
|
||||
name: string;
|
||||
position: string;
|
||||
email: string;
|
||||
phone: string;
|
||||
}
|
||||
interface MyObjectInvestigateRef {
|
||||
complaint: object | null;
|
||||
|
|
@ -49,5 +59,4 @@ interface MyObjectInvestigateRef {
|
|||
[key: string]: any;
|
||||
}
|
||||
|
||||
|
||||
export type { FormData, MyObjectInvestigateRef };
|
||||
|
|
|
|||
|
|
@ -2,12 +2,14 @@ interface DataOptionRes {
|
|||
organizationId: string;
|
||||
organizationName: string;
|
||||
}
|
||||
|
||||
interface CaledarInvestigatefacts {
|
||||
id: string;
|
||||
title: string;
|
||||
investigationDateStart: Date;
|
||||
investigationDateEnd: Date;
|
||||
}
|
||||
|
||||
interface CaledarDisciplinary {
|
||||
id: string;
|
||||
title: string;
|
||||
|
|
@ -15,4 +17,10 @@ interface CaledarDisciplinary {
|
|||
disciplinaryDateStart: Date;
|
||||
}
|
||||
|
||||
export type { DataOptionRes, CaledarInvestigatefacts, CaledarDisciplinary };
|
||||
interface ExtendHistoryObject {
|
||||
name: string;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
|
||||
export type { DataOptionRes, CaledarInvestigatefacts, CaledarDisciplinary, ExtendHistoryObject };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue