แก้ไข ui pop up อนุมัติคำขอ

This commit is contained in:
AnandaTon 2023-11-06 17:49:30 +07:00
parent 61026107cd
commit 288fad12e1
5 changed files with 80 additions and 79 deletions

View file

@ -8,5 +8,7 @@ interface ListData {
startTimeAfternoon: string | null;
endTimeAfternoon: string | null;
status: string;
checkInStatus: string;
checkOutStatus: string;
}
export type { ListData };

View file

@ -12,13 +12,15 @@ interface dataRowRound {
endTimeMorning: string;
startTimeAfternoon: string;
endTimeAfternoon: string;
checkInStatus: string;
checkOutStatus: string;
note: string;
}
interface MyObjectRoundRef {
startTimeMorning: object | null;
endTimeMorning: object | null;
startTimeAfternoon: object | null;
endTimeAfternoon: object | null;
checkInStatus: object | null;
checkOutStatus: object | null;
[key: string]: any;
}
export type { DataRows, dataRowRound, MyObjectRoundRef };