แก้ไขประวัติเงินเดือน === > Popup-Edit

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-06-05 10:11:08 +07:00
parent 8725a4f79e
commit 783c3c6e50
4 changed files with 877 additions and 19 deletions

View file

@ -8,4 +8,23 @@ interface DataProfile {
org: string;
}
export type { DataProfile };
interface FormDataSalary {
positionLevel: string;
positionCee: string;
amount: number;
amountSpecial: number;
posNoAbb: string;
posNo: string;
orgRoot: string;
orgChild1: string;
orgChild2: string;
orgChild3: string;
orgChild4: string;
commandCode: string;
posNumCodeSit: string;
posNumCodeSitAbb: string;
commandNo: string;
commandYear: null | number;
}
export type { DataProfile, FormDataSalary };

View file

@ -27,8 +27,8 @@ interface DataPosition {
amount: number;
amountSpecial: number;
commandCode: string;
commandDateAffect: string;
commandDateSign: string;
commandDateAffect: Date;
commandDateSign: Date;
commandId: string;
commandName: string;
commandNo: string;
@ -68,6 +68,8 @@ interface DataPosition {
remark: string;
salaryId: string;
status: string;
posNumCodeSitAbb: string;
posNumCodeSit: string;
}
export type { DataSalaryPos, DataPosition };