Merge branch 'develop' into devTee

This commit is contained in:
setthawutttty 2024-02-08 15:24:28 +07:00
commit bf20e7d28c
16 changed files with 854 additions and 814 deletions

View file

@ -78,7 +78,34 @@ interface OptionLevel {
posLevelName: string;
}
interface FormSalaryNew {
date: Date;
posNo: string;
templatePos: string;
position: string;
typePosition: string;
levelPosition: string;
salary: number | undefined;
salaryPos: number | undefined;
templateDoc: string;
doc: string;
}
interface FormSalaryNewRef {
date: object | null;
posNo: object | null;
templatePos: object | null;
position: object | null;
levelPosition: object | null;
salary: object | null;
templateDoc: object | null;
doc: object | null;
[key: string]: any;
}
export type {
FormSalaryNew,
FormSalaryNewRef,
Pagination,
DataOption,
DataOptionInsignia,