ปรับ code => เงินเดือน/ค่าจ้าง

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-30 16:21:27 +07:00
parent 068769e317
commit 72590f3ac9
9 changed files with 133 additions and 134 deletions

View file

@ -23,6 +23,13 @@ interface ItemsMenu {
type: string;
}
interface ItemsCards {
label: string;
name: string;
color: string;
total: number;
}
interface FormData {
name: string;
posTypeId: string;
@ -47,4 +54,12 @@ interface FormSalaryRate {
isNext: boolean;
}
export type { DataOption, NewPagination, ItemsMenu, DataOptionShort, FormData ,FormSalaryRate};
export type {
DataOption,
NewPagination,
ItemsMenu,
DataOptionShort,
FormData,
FormSalaryRate,
ItemsCards,
};

View file

@ -121,6 +121,22 @@ interface DataPeriod {
status: string;
type: string;
}
interface ResSalaryOrg {
chosen: number;
currentAmount: number;
fifteenPercent: number;
org: string;
remaining: number;
remainingAmount: number;
sixPercentAmount: number;
sixPercentSpentAmount: number;
spentAmount: number;
total: number;
totalAmountSpecial: number;
totalBackup: number;
useAmount: number;
}
export type {
DataPeriodLatest,
DataPeriodQuota,
@ -128,4 +144,5 @@ export type {
DataAgency,
DataPerson,
DataPeriod,
ResSalaryOrg,
};