This commit is contained in:
AdisakKanthawilang 2024-03-07 16:06:49 +07:00
parent 0598f8fd34
commit efe434e6ac

View file

@ -50,20 +50,24 @@ import {
* @summary * @summary
* *
*/ */
@Post("report1") @Get("report1/{rootId}/{salaryPeriodId}")
async report1(@Body() body: { rootId: string; salaryPeriodId: string;}) { async SalaryReport1(@Path() rootId: string, @Path() salaryPeriodId: string) {
const salaryPeriodAPR = await this.salaryProfileRepository.find({ const salaryPeriodAPR = await this.salaryProfileRepository.find({
relations: ["salaryOrg", "salaryOrg.salaryPeriod"], relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
where: { where: {
salaryOrg: { salaryOrg: {
snapshot: "SNAP1", snapshot: "SNAP1",
rootId:body.rootId, rootId: rootId,
salaryPeriodId: body.salaryPeriodId, salaryPeriodId: salaryPeriodId,
salaryPeriod: { salaryPeriod: {
period:"APR" period: "APR",
}
}, },
}, },
},
order: {
orgShortName: "ASC",
posMasterNo: "ASC",
},
}); });
if (!salaryPeriodAPR) { if (!salaryPeriodAPR) {
@ -79,22 +83,195 @@ import {
profile?.child2, profile?.child2,
profile?.child1, profile?.child1,
profile?.root, profile?.root,
`${profile?.prefix}${profile?.firstName} ${profile?.lastName}` `${profile?.prefix}${profile?.firstName} ${profile?.lastName}`,
]; ];
const fullName = fullNameParts.filter(part => part !== undefined && part !== null).join('/'); const fullName = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
return { return {
no: index + 1, no: Extension.ToThaiNumber((index + 1).toLocaleString()),
fullName: fullName?fullName:"", fullName: fullName ? fullName : null,
posLevel: profile?.posLevel?profile?.posLevel:"", posLevel: profile?.posLevel ? profile?.posLevel : null,
posNumber: profile?.posMasterNo?profile?.posMasterNo:"", posNumber:
amount: profile?.amount?profile?.amount:"", profile?.orgShortName + profile?.posMasterNo
? profile?.orgShortName + Extension.ToThaiNumber(profile?.posMasterNo.toLocaleString())
: null,
amount: profile?.amount ? Extension.ToThaiNumber(profile?.amount.toLocaleString()) : null,
reason: null, reason: null,
}; };
}); });
return new HttpSuccess({ agency: agency, data: formattedData }); return { agency: agency, data: formattedData };
}
} }
/**
* API
*
* @summary
*
*/
@Get("report2/{rootId}/{salaryPeriodId}/{salaryOrgId}")
async SalaryReport2(@Path() rootId: string, @Path() salaryPeriodId: string, @Path() salaryOrgId: string) {
// const counts = await AppDataSource.getRepository(SalaryProfile)
// .createQueryBuilder("salaryProfile")
// .leftJoin("salaryProfile.salaryOrg", "salaryOrg")
// .leftJoin("salaryOrg.salaryPeriod", "salaryPeriod")
// .where({
// salaryOrg: {
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// group: "GROUP2",
// snapshot: "SNAP1",
// }
// })
// .select([
// "COUNT(CASE WHEN salaryProfile.posType = 'ทั่วไป' AND salaryProfile.posLevel = 'ทักษะพิเศษ' THEN 1 END) AS count1",
// "COUNT(CASE WHEN salaryProfile.posType = 'วิชาการ' AND salaryProfile.posLevel = 'เชี่ยวชาญ' THEN 1 END) AS count2",
// "COUNT(CASE WHEN salaryProfile.posType = 'วิชาการ' AND salaryProfile.posLevel = 'ทรงคุณวุฒิ' THEN 1 END) AS count3",
// "COUNT(CASE WHEN salaryProfile.posType = 'อำนวยการ' AND salaryProfile.posLevel = 'สูง' THEN 1 END) AS count4",
// "COUNT(CASE WHEN salaryProfile.posType = 'บริหาร' AND salaryProfile.posLevel = 'ต้น' THEN 1 END) AS count5",
// "COUNT(CASE WHEN salaryProfile.posType = 'บริหาร' AND salaryProfile.posLevel = 'สูง' THEN 1 END) AS count6",
// ])
// .getRawOne();
// const [data1,count1] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "ทั่วไป",
// posLevel: "ทักษะพิเศษ",
// },
// select: ["posType", "posLevel"],
// });
// const [data2,count2] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "วิชาการ",
// posLevel: "เชี่ยวชาญ",
// },
// select: ["posType", "posLevel"],
// });
// const [data3,count3] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "วิชาการ",
// posLevel: "ทรงคุณวุฒิ",
// },
// select: ["posType", "posLevel"],
// });
// const [data4,count4] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "อำนวยการ",
// posLevel: "สูง",
// },
// select: ["posType", "posLevel"],
// });
// const [data5,count5] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "บริหาร",
// posLevel: "ต้น",
// },
// select: ["posType", "posLevel"],
// });
// const [data6,count6] = await this.salaryProfileRepository.findAndCount({
// relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
// where: {
// salaryOrg: {
// snapshot: "SNAP1",
// group: "GROUP2",
// rootId: rootId,
// salaryPeriodId: salaryPeriodId,
// salaryPeriod: {
// period: "APR",
// },
// },
// posType: "บริหาร",
// posLevel: "สูง",
// },
// select: ["posType", "posLevel"],
// });
const statistics = await this.salaryProfileRepository.find({
relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
where: {
salaryOrg: {
id:salaryOrgId,
snapshot: "SNAP1",
group: "GROUP2",
rootId: rootId,
salaryPeriod: {
id: salaryPeriodId,
period: "APR",
},
},
},
});
const notPromoSum = (statistics[0]?.salaryOrg?.total ?? 0) - (statistics[0]?.salaryOrg?.fifteenPercent ?? 0);
const haftCount = statistics?.filter(item => item.type === "HAFT").length ?? 0;
const data = {
group: statistics[0]?.salaryOrg.total?"กลุ่ม 2":"",
total: statistics[0]?.salaryOrg.total?statistics[0]?.salaryOrg.total:"",
fifteenPercent: statistics[0]?.salaryOrg.fifteenPercent?statistics[0]?.salaryOrg.fifteenPercent:"",
full: statistics[0]?.salaryOrg.quantityUsed?statistics[0]?.salaryOrg.quantityUsed:"",
remaining: statistics[0]?.salaryOrg.remainQuota?statistics[0]?.salaryOrg.remainQuota:"",
haft: haftCount,
notPromoted: notPromoSum,
reason: null,
};
return data;
}
}