fix:registry

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-12-16 14:09:16 +07:00
parent 18101353a1
commit 4c569a1d3f
10 changed files with 502 additions and 127 deletions

View file

@ -75,8 +75,8 @@ interface FormPostition {
positionExecutiveField?: string; //ด้านทางการบริหาร
positionArea?: string; //ด้าน/สาขา
positionCee: string; //ระดับซี
amount: number | null; //เงินเดือน
amountSpecial: number | null; //เงินค่าตอบแทนพิเศษ
amount: number | undefined; //เงินเดือน
amountSpecial: number | undefined; //เงินค่าตอบแทนพิเศษ
orgRoot: string; //หน่วยงาน
orgChild1: string; //ส่วนราชการระดับ 1
orgChild2: string; //ส่วนราชการระดับ 2

View file

@ -22,10 +22,10 @@ interface FormDataSalary {
positionPathSide: string; //ด้าน/สาขา
positionExecutive: string; //ตำแหน่งทางการบริหาร
positionExecutiveField: string; //ด้านทางการบริหาร
amount: number | null; //เงินเดือน
amountSpecial: number | null; //เงินค่าตอบแทนพิเศษ
positionSalaryAmount: number | null; //เงินประจำตำแหน่ง
mouthSalaryAmount: number | null; //เงินค่าตอบแทนรายเดือน
amount: number | undefined; //เงินเดือน
amountSpecial: number | undefined; //เงินค่าตอบแทนพิเศษ
positionSalaryAmount: number | undefined; //เงินประจำตำแหน่ง
mouthSalaryAmount: number | undefined; //เงินค่าตอบแทนรายเดือน
orgRoot: string; //หน่วยงาน
orgChild1: string; //ส่วนราชการระดับ 1
orgChild2: string; //ส่วนราชการระดับ 2

View file

@ -4,11 +4,11 @@ interface FormEmployee {
positionEmployeePositionId: string;
employeeOc: string;
employeeTypeIndividual: string;
employeeWage: string;
employeeMoneyIncrease: string;
employeeMoneyAllowance: string;
employeeMoneyEmployee: string;
employeeMoneyEmployer: string;
employeeWage: number | undefined;
employeeMoneyIncrease: number | undefined;
employeeMoneyAllowance: number | undefined;
employeeMoneyEmployee: number | undefined;
employeeMoneyEmployer: number | undefined;
}
interface FormEmployment {

View file

@ -15,10 +15,10 @@ interface FormSalary {
positionExecutive: string; //ตำแหน่งทางการบริหาร
positionExecutiveField?: string; //ด้านทางการบริหาร
positionArea?: string; //ด้าน/สาขา
amount: number | null; //เงินเดือน
amountSpecial: number | null; //เงินค่าตอบแทนพิเศษ
positionSalaryAmount: number | null; //เงินประจำตำแหน่ง
mouthSalaryAmount: number | null; //เงินค่าตอบแทนรายเดือน
amount: number | undefined; //เงินเดือน
amountSpecial: number | undefined; //เงินค่าตอบแทนพิเศษ
positionSalaryAmount: number | undefined; //เงินประจำตำแหน่ง
mouthSalaryAmount: number | undefined; //เงินค่าตอบแทนรายเดือน
orgRoot: string; //หน่วยงาน
orgChild1: string; //ส่วนราชการระดับ 1
orgChild2: string; //ส่วนราชการระดับ 2