ประวัติเงินเดือน
This commit is contained in:
parent
788620f4e3
commit
46bfcad156
1 changed files with 29 additions and 29 deletions
|
|
@ -1826,39 +1826,39 @@ const clickHistory = async (row: RequestItemsObject) => {
|
||||||
rowsHistory.value.push({
|
rowsHistory.value.push({
|
||||||
id: e.id,
|
id: e.id,
|
||||||
date: new Date(e.date),
|
date: new Date(e.date),
|
||||||
amount: e.amount,
|
amount: e.amount ?? "_",
|
||||||
positionSalaryAmount: e.positionSalaryAmount,
|
positionSalaryAmount: e.positionSalaryAmount ?? "_",
|
||||||
mouthSalaryAmount: e.mouthSalaryAmount,
|
mouthSalaryAmount: e.mouthSalaryAmount ?? "_",
|
||||||
oc: e.oc,
|
oc: e.oc,
|
||||||
ocId: e.ocId,
|
ocId: e.ocId,
|
||||||
position: e.position,
|
position: e.position ?? "_",
|
||||||
positionId: e.positionId,
|
positionId: e.positionId,
|
||||||
positionName: e.positionName,
|
positionName: e.positionName ?? "_",
|
||||||
posNo: e.posNo,
|
posNo: e.posNo ?? "_",
|
||||||
posNoId: e.posNoId,
|
posNoId: e.posNoId,
|
||||||
positionLine: e.positionLine,
|
positionLine: e.positionLine ?? "_",
|
||||||
positionLineName: e.positionLineName,
|
positionLineName: e.positionLineName ?? "_",
|
||||||
positionLineId: e.positionLineId,
|
positionLineId: e.positionLineId ?? "_",
|
||||||
positionPathSide: e.positionPathSide,
|
positionPathSide: e.positionPathSide ?? "_",
|
||||||
positionPathSideId: e.positionPathSideId,
|
positionPathSideId: e.positionPathSideId ?? "_",
|
||||||
positionPathSideName: e.positionPathSideName,
|
positionPathSideName: e.positionPathSideName ?? "_",
|
||||||
positionType: e.positionType,
|
positionType: e.positionType ?? "_",
|
||||||
positionTypeId: e.positionTypeId,
|
positionTypeId: e.positionTypeId ?? "_",
|
||||||
positionLevel: e.positionLevel,
|
positionLevel: e.positionLevel ?? "_",
|
||||||
positionLevelId: e.positionLevelId,
|
positionLevelId: e.positionLevelId ?? "_",
|
||||||
positionExecutive: e.positionExecutive,
|
positionExecutive: e.positionExecutive ?? "_",
|
||||||
positionExecutiveId: e.positionExecutiveId,
|
positionExecutiveId: e.positionExecutiveId ?? "_",
|
||||||
positionExecutiveName: e.positionExecutiveName,
|
positionExecutiveName: e.positionExecutiveName ?? "_",
|
||||||
positionExecutiveSide: e.positionExecutiveSide,
|
positionExecutiveSide: e.positionExecutiveSide ?? "_",
|
||||||
positionExecutiveSideId: e.positionExecutiveSideId,
|
positionExecutiveSideId: e.positionExecutiveSideId ?? "_",
|
||||||
salaryClass: e.salaryClass,
|
salaryClass: e.salaryClass ?? "_",
|
||||||
salaryStatus: e.salaryStatus,
|
salaryStatus: e.salaryStatus ?? "_",
|
||||||
salaryRef: e.salaryRef,
|
salaryRef: e.salaryRef ?? "_",
|
||||||
refCommandNo: e.refCommandNo,
|
refCommandNo: e.refCommandNo ?? "_",
|
||||||
createdFullName: e.createdFullName,
|
createdFullName: e.createdFullName ?? "_",
|
||||||
orgName: e.orgName,
|
orgName: e.orgName ?? "_",
|
||||||
agencyName: e.agencyName,
|
agencyName: e.agencyName ?? "_",
|
||||||
cLevel: e.cLevel,
|
cLevel: e.cLevel ?? "_",
|
||||||
createdAt: new Date(e.createdAt),
|
createdAt: new Date(e.createdAt),
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue