Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2023-11-23 17:02:45 +07:00
commit 418437486d
16 changed files with 821 additions and 631 deletions

View file

@ -8,13 +8,15 @@ interface DataNumberOption {
name: string;
}
interface investigatefactsDataRowType {
interface InvestigatefactsDataRowType {
id:string,
subject: string;
interrogated: string;
fault: string | undefined;
status: string | undefined;
active: string | undefined;
complaintOffenseDetails: string,
investigationDetail: string,
dateInvestigate: string,
statusResult: string,
status: string
}
interface investigateDisDataRowType {
@ -40,7 +42,7 @@ interface directorType {
export type {
DataOption,
investigatefactsDataRowType,
InvestigatefactsDataRowType,
investigateDisDataRowType,
directorType,
DataNumberOption

View file

@ -14,6 +14,7 @@ interface FormData {
statusResult: string;
causeText: string;
complaintStatus:string
reason: string
}
interface MyObjectInvestigateRef {
complaint: object | null;
@ -28,6 +29,7 @@ interface MyObjectInvestigateRef {
daysExtend: object | null;
statusResult: object | null;
causeText: object | null;
reason: object | null;
[key: string]: any;
}
export type { FormData, MyObjectInvestigateRef };

View file

@ -0,0 +1,35 @@
interface FormData {
complaint: string;
complaintdetail: string;
detail: string;
fault: string;
other: string;
evidenceFiles: File | null;
fileComplaint: File | null;
clickTime: boolean;
date: Date | null;
dateEnd: Date;
daysExtend: number | null;
investigation: string;
statusResult: string;
causeText: string;
complaintStatus:string
reason: string
}
interface MyObjectInvestigateRef {
complaint: object | null;
complaintdetail: object | null;
detail: object | null;
fault: object | null;
evidenceFiles: object | null;
fileComplaint: object | null;
date: object | null;
dateEnd: object | null;
investigation: object | null;
daysExtend: object | null;
statusResult: object | null;
causeText: object | null;
reason: object | null;
[key: string]: any;
}
export type { FormData, MyObjectInvestigateRef };

View file

@ -0,0 +1,13 @@
interface ListData {
id: string;
subject: string;
interrogated: string;
complaintOffenseDetails: string;
investigationDetail: string;
startDate: Date | null;
endDate: Date | null;
statusResult: string;
status: string;
}
export type { ListData };