Merge branch 'develop' into warunee-dev
# Conflicts: # src/modules/09_leave/components/4_specialTime/Table.vue # src/modules/09_leave/stores/SpecialTimeStore.ts # src/modules/09_leave/views/SpecialTimeMain.vue
This commit is contained in:
commit
36539b2274
6 changed files with 314 additions and 10 deletions
12
src/modules/09_leave/interface/request/specialTime.ts
Normal file
12
src/modules/09_leave/interface/request/specialTime.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
interface ListData {
|
||||
id: string;
|
||||
fullname: string | null;
|
||||
date: string | null;
|
||||
dateFix: string | null;
|
||||
startTimeMorning: string | null;
|
||||
endTimeMorning: string | null;
|
||||
startTimeAfternoon: string | null;
|
||||
endTimeAfternoon: string | null;
|
||||
status: string;
|
||||
}
|
||||
export type { ListData };
|
||||
|
|
@ -1,11 +1,10 @@
|
|||
interface DataRows {
|
||||
id: string;
|
||||
fullname: string | null;
|
||||
date: string | null;
|
||||
dateFix: string | null;
|
||||
type: string;
|
||||
reason: string;
|
||||
timeStamp: string;
|
||||
unapprove?: string; // Make these properties optional
|
||||
approve?: string;
|
||||
timeMorning: string;
|
||||
timeAfternoon: string;
|
||||
status: string;
|
||||
}
|
||||
export type { DataRows };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue