hrms-api-salary/src/controllers/ReportController.ts

785 lines
26 KiB
TypeScript
Raw Normal View History

import {
Controller,
Get,
Post,
Put,
Delete,
Patch,
Route,
Security,
Tags,
Body,
Path,
Request,
Example,
SuccessResponse,
Response,
Query,
} from "tsoa";
import { AppDataSource } from "../database/data-source";
import HttpSuccess from "../interfaces/http-success";
import HttpStatusCode from "../interfaces/http-status";
import HttpError from "../interfaces/http-error";
2024-03-18 13:07:09 +07:00
import { In, Not, IsNull, MoreThan } from "typeorm";
import { Salarys } from "../entities/Salarys";
import { SalaryRanks } from "../entities/SalaryRanks";
import { PosType } from "../entities/PosType";
import { PosLevel } from "../entities/PosLevel";
2024-03-18 13:07:09 +07:00
import { SalaryPeriod } from "../entities/SalaryPeriod";
import { SalaryOrg } from "../entities/SalaryOrg";
import { SalaryProfile } from "../entities/SalaryProfile";
import Extension from "../interfaces/extension";
import { SalaryEmployee } from "../entities/SalaryEmployee";
import { SalaryRankEmployee } from "../entities/SalaryRankEmployee";
@Route("api/v1/salary/report")
@Tags("Report")
@Security("bearerAuth")
@Response(
HttpStatusCode.INTERNAL_SERVER_ERROR,
"เกิดข้อผิดพลาด ไม่สามารถแสดงรายการได้ กรุณาลองใหม่ในภายหลัง",
)
@SuccessResponse(HttpStatusCode.OK, "สำเร็จ")
export class ReportController extends Controller {
private salaryRepository = AppDataSource.getRepository(Salarys);
private salaryEmployeeRepository = AppDataSource.getRepository(SalaryEmployee);
private salaryRankRepository = AppDataSource.getRepository(SalaryRanks);
private salaryEmployeeRankRepository = AppDataSource.getRepository(SalaryRankEmployee);
private poTypeRepository = AppDataSource.getRepository(PosType);
private posLevelRepository = AppDataSource.getRepository(PosLevel);
2024-03-18 13:07:09 +07:00
private salaryPeriodRepository = AppDataSource.getRepository(SalaryPeriod);
private salaryOrgRepository = AppDataSource.getRepository(SalaryOrg);
private salaryProfileRepository = AppDataSource.getRepository(SalaryProfile);
/**
2024-03-18 13:50:24 +07:00
* API
*
2024-03-18 13:50:24 +07:00
* @summary
*
* @param {string} id Guid, *Id
*/
2024-03-18 13:50:24 +07:00
@Get("{id}")
async SalaryReport(@Path() id: string) {
const salarys = await this.salaryRepository.findOne({
where: { id: id },
});
if (!salarys) {
2024-02-28 13:35:08 +07:00
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลผังเงินเดือนนี้");
}
const posType = await this.poTypeRepository.findOne({
where: { id: salarys.posTypeId },
});
const posLevel = await this.posLevelRepository.findOne({
where: { id: salarys.posLevelId },
});
const salaryRank = await this.salaryRankRepository.find({
where: {
salaryId: salarys.id,
},
select: [
"id",
"salary",
"salaryHalf",
"salaryHalfSpecial",
"salaryFull",
"salaryFullSpecial",
"salaryFullHalf",
"salaryFullHalfSpecial",
],
order: {
salary: "DESC",
salaryHalf: "DESC",
},
});
const mapSalaryRank = salaryRank.map((item, index) => ({
// no: index + 1,
// id: item.id,
salary: item.salary == null || item.salary == 0 ? "" : item.salary.toLocaleString(),
salaryHalf:
item.salaryHalf == null || item.salaryHalf == 0
? ""
: item.salaryHalf.toLocaleString() +
(item.salaryHalfSpecial == null || item.salaryHalfSpecial == 0
? ""
: " (" + item.salaryHalfSpecial.toLocaleString() + "*)"),
salaryFull:
item.salaryFull == null || item.salaryFull == 0
? ""
: item.salaryFull.toLocaleString() +
(item.salaryFullSpecial == null || item.salaryFullSpecial == 0
? ""
: " (" + item.salaryFullSpecial.toLocaleString() + "*)"),
salaryFullHalf:
item.salaryFullHalf == null || item.salaryFullHalf == 0
? ""
: item.salaryFullHalf.toLocaleString() +
(item.salaryFullHalfSpecial == null || item.salaryFullHalfSpecial == 0
? ""
: " (" + item.salaryFullHalfSpecial.toLocaleString() + "*)"),
}));
return new HttpSuccess({
template: "SalaryRank",
reportName: "SalaryRank",
data: {
nameType:
salarys.name == "OFFICER"
? "ผังข้าราชการกรุงเทพมหานครสามัญ"
: salarys.name == "EMPLOYEE"
? "ผังลูกจ้างประจำกรุงเทพมหานคร"
: "",
2024-02-19 15:31:07 +07:00
level: posLevel?.posLevelName == null ? "" : posLevel?.posLevelName,
type: posType?.posTypeName == null ? "" : posType?.posTypeName,
date:
salarys.date == null
? ""
: salarys.date.getDate() +
" " +
Extension.ToThaiMonth(salarys.date.getMonth() + 1) +
" " +
Extension.ToThaiYear(salarys.date.getFullYear()),
startDate:
salarys.startDate == null
? ""
: salarys.startDate.getDate() +
" " +
Extension.ToThaiMonth(salarys.startDate.getMonth() + 1) +
" " +
Extension.ToThaiYear(salarys.startDate.getFullYear()),
endDate:
salarys.endDate == null
? ""
: salarys.endDate.getDate() +
" " +
Extension.ToThaiMonth(salarys.endDate.getMonth() + 1) +
" " +
Extension.ToThaiYear(salarys.endDate.getFullYear()),
2024-02-19 15:31:07 +07:00
details: salarys.details == null ? "" : salarys.details,
salaryRanks: mapSalaryRank,
},
2024-02-19 15:31:07 +07:00
});
2024-03-18 13:07:09 +07:00
}
/**
* API
*
* @summary
*
* @param {string} id Guid, *Id
*/
@Get("employee/{id}")
async SalaryEmployeeReport(@Path() id: string) {
const salarys = await this.salaryEmployeeRepository.findOne({
where: { id: id },
});
if (!salarys) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลผังเงินเดือนนี้");
}
const salaryRank = await this.salaryEmployeeRankRepository.find({
where: {
salaryEmployeeId: salarys.id,
},
select: ["id", "step", "salaryMonth", "salaryDay"],
order: {
step: "ASC",
salaryMonth: "ASC",
},
});
const mapSalaryRank = salaryRank.map((item, index) => ({
step: item.step == null || item.step == 0 ? "" : item.step.toLocaleString(),
salaryMonth:
item.salaryMonth == null || item.salaryMonth == 0 ? "" : item.salaryMonth.toLocaleString(),
salaryDay:
item.salaryDay == null || item.salaryDay == 0 ? "" : item.salaryDay.toLocaleString(),
}));
return new HttpSuccess({
template: "SalaryRankEmployee",
reportName: "SalaryRankEmployee",
data: {
date: Extension.ToThaiFullDate(new Date()),
group: salarys.group == null || salarys.group == 0 ? "" : salarys.group.toLocaleString(),
salaryRanks: mapSalaryRank,
},
});
}
2024-03-18 13:07:09 +07:00
/**
* API 1
*
* @summary 1
*
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-01/{rootId}/{salaryPeriodId}")
async SalaryReport1(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 13:07:09 +07:00
const salaryPeriodAPR = await this.salaryProfileRepository.find({
relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
where: {
salaryOrg: {
snapshot: "SNAP1",
rootId: rootId,
salaryPeriodId: salaryPeriodId,
salaryPeriod: {
period: "APR",
},
},
},
order: {
orgShortName: "ASC",
posMasterNo: "ASC",
},
});
if (!salaryPeriodAPR) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล");
}
const agency = salaryPeriodAPR[0]?.root;
const formattedData = salaryPeriodAPR.map((profile, index) => {
const fullNameParts = [
profile?.child4,
profile?.child3,
profile?.child2,
profile?.child1,
profile?.root,
`${profile?.prefix}${profile?.firstName} ${profile?.lastName}`,
];
const fullName = fullNameParts
.filter((part) => part !== undefined && part !== null)
.join("/");
return {
no: Extension.ToThaiNumber((index + 1).toLocaleString()),
fullName: fullName ? fullName : null,
posLevel: profile?.posLevel ? profile?.posLevel : null,
posNumber:
profile?.orgShortName + profile?.posMasterNo
? profile?.orgShortName + Extension.ToThaiNumber(profile?.posMasterNo.toLocaleString())
: null,
amount: profile?.amount ? Extension.ToThaiNumber(profile?.amount.toLocaleString()) : null,
reason: null,
};
});
return { agency: agency, data: formattedData };
}
/**
* API
*
* @summary
*
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-02/{rootId}/{salaryPeriodId}")
2024-03-18 13:07:09 +07:00
async SalaryReport2(
@Path() rootId: string,
@Path() salaryPeriodId: string,
2024-03-18 16:11:13 +07:00
// @Path() salaryOrgId: string,
2024-03-18 13:07:09 +07:00
) {
const statistics = await this.salaryProfileRepository.find({
relations: ["salaryOrg", "salaryOrg.salaryPeriod"],
where: {
salaryOrg: {
2024-03-18 16:11:13 +07:00
// id: salaryOrgId,
2024-03-18 13:07:09 +07:00
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;
}
/**
* API
*
* @summary
*
* @param {string} rootId Guid, *Id Root
* @param {string} salaryPeriodId Guid, *Id Period
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-03/{rootId}/{salaryPeriodId}")
async SalaryReport3(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 13:07:09 +07:00
const salaryPeriod = await this.salaryPeriodRepository.findOne({
where: {
id: salaryPeriodId,
period: "APR",
isActive: true,
},
});
if (!salaryPeriod) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน");
}
const salaryOrg = await this.salaryOrgRepository.findOne({
where: {
salaryPeriodId: salaryPeriodId,
rootId: rootId,
snapshot: "SNAP2",
},
order: {
group: "ASC",
},
relations: ["salaryProfiles"],
});
const salaryProfile = await this.salaryProfileRepository.find({
where: {
salaryOrgId: salaryOrg?.id,
type: "FULL", //หนึ่งขั้น
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
"amountSpecial",
],
});
const mapData = {
effectiveDate: salaryPeriod?.effectiveDate,
// root: salaryProfile[0]?.root,
profile: salaryProfile.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position:
item.position +
"/" +
(item.child4 == undefined && item.child4 == null ? "" : item.child4 + "/") +
(item.child3 == undefined && item.child3 == null ? "" : item.child3 + "/") +
(item.child2 == undefined && item.child2 == null ? "" : item.child2 + "/") +
(item.child1 == undefined && item.child1 == null ? "" : item.child1 + "/") +
(item.root == undefined && item.root == null ? "" : item.root),
posLevel: item.posLevel,
posMasterNo: Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
score: null, //สรุปผลการประเมินฯ ระดับและคะแนน
remark: null, //หมายเหตุ
})),
};
return mapData;
}
/**
* API 1
*
* @summary 1
*
* @param {string} rootId Guid, *Id Root
* @param {string} salaryPeriodId Guid, *Id Period
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-04/{rootId}/{salaryPeriodId}")
async SalaryReport4(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 13:07:09 +07:00
const salaryPeriod = await this.salaryPeriodRepository.findOne({
where: {
id: salaryPeriodId,
period: "APR",
isActive: true,
},
});
if (!salaryPeriod) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน");
}
const salaryOrg = await this.salaryOrgRepository.findOne({
where: {
salaryPeriodId: salaryPeriodId,
rootId: rootId,
snapshot: "SNAP2",
},
order: {
group: "ASC",
},
relations: ["salaryProfiles"],
});
const salaryProfile = await this.salaryProfileRepository.find({
where: {
2024-03-18 16:11:13 +07:00
salaryOrgId: salaryOrg?.id,
type: Not("NONE"), //ทุก Type ยกเว้นไม่ได้เลื่อน
2024-03-18 16:11:13 +07:00
},
2024-03-18 13:07:09 +07:00
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
"amountSpecial",
],
});
const mapData = {
effectiveDate: salaryPeriod?.effectiveDate,
root: salaryProfile[0]?.root,
profile: salaryProfile.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position:
item.position +
"/" +
(item.child4 == undefined && item.child4 == null ? "" : item.child4 + "/") +
(item.child3 == undefined && item.child3 == null ? "" : item.child3 + "/") +
(item.child2 == undefined && item.child2 == null ? "" : item.child2 + "/") +
(item.child1 == undefined && item.child1 == null ? "" : item.child1 + "/") +
(item.root == undefined && item.root == null ? "" : item.root),
posLevel: item.posLevel,
orgShortName: item.orgShortName + Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
amountSpecial:
item.amountSpecial == undefined || item.amountSpecial == null
? ""
: Extension.ToThaiNumber(String(item.amountSpecial)),
score: null, //สรุปผลการประเมินฯ ระดับและคะแนน
remark: null, //หมายเหตุ
})),
};
return mapData;
}
2024-03-18 16:11:13 +07:00
/**
* API 2
*
* @summary 2
*
* @param {string} rootId Guid, *Id Root
* @param {string} salaryPeriodId Guid, *Id Period
*/
@Get("gov1-05/{rootId}/{salaryPeriodId}")
async SalaryReport5(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 16:11:13 +07:00
const salaryPeriod = await this.salaryPeriodRepository.findOne({
where: {
id: salaryPeriodId,
period: "APR",
isActive: true,
},
});
if (!salaryPeriod) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน");
}
const salaryOrg = await this.salaryOrgRepository.findOne({
where: {
salaryPeriodId: salaryPeriodId,
rootId: rootId,
snapshot: "SNAP2",
},
order: {
group: "ASC",
},
relations: ["salaryProfiles"],
});
const salaryProfile = await this.salaryProfileRepository.find({
where: {
2024-03-18 16:11:13 +07:00
salaryOrgId: salaryOrg?.id,
type: "NONE", //ไม่ได้เลื่อน
2024-03-18 16:11:13 +07:00
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
"amountSpecial",
],
});
const mapData = {
effectiveDate: salaryPeriod?.effectiveDate,
root: salaryProfile[0]?.root,
profile: salaryProfile.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position:
item.position +
"/" +
(item.child4 == undefined && item.child4 == null ? "" : item.child4 + "/") +
(item.child3 == undefined && item.child3 == null ? "" : item.child3 + "/") +
(item.child2 == undefined && item.child2 == null ? "" : item.child2 + "/") +
(item.child1 == undefined && item.child1 == null ? "" : item.child1 + "/") +
(item.root == undefined && item.root == null ? "" : item.root),
posLevel: item.posLevel,
orgShortName: item.orgShortName + Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
amountSpecial:
item.amountSpecial == undefined || item.amountSpecial == null
? ""
: Extension.ToThaiNumber(String(item.amountSpecial)),
score: null, //สรุปผลการประเมินฯ ระดับและคะแนน
remark: null, //หมายเหตุ
})),
};
return mapData;
}
// /* API แบบ 3 กท บัญชีแสดงวันลาครึ่งปี ขรก
// *
// * @summary แบบ 3 กท บัญชีแสดงวันลาครึ่งปี ขรก
// *
// * @param {string} rootId Guid, *Id Root
// * @param {string} salaryPeriodId Guid, *Id Period
// */
// @Get("gov1-06/{rootId}/{salaryPeriodId}")
// async SalaryReport6(){
2024-03-18 16:11:13 +07:00
// }
2024-03-18 16:11:13 +07:00
2024-03-18 13:07:09 +07:00
/**
* API
*
* @summary
*
* @param {string} rootId Guid, *Id Root
* @param {string} salaryPeriodId Guid, *Id Period
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-07/{rootId}/{salaryPeriodId}")
async SalaryReport7(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 13:07:09 +07:00
const salaryPeriod = await this.salaryPeriodRepository.findOne({
where: {
id: salaryPeriodId,
period: "APR",
isActive: true,
},
});
if (!salaryPeriod) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน");
}
const salaryOrg = await this.salaryOrgRepository.findOne({
where: {
salaryPeriodId: salaryPeriodId,
rootId: rootId,
snapshot: "SNAP2",
},
order: {
group: "ASC",
},
relations: ["salaryProfiles"],
});
const salaryProfile = await this.salaryProfileRepository.find({
where: {
salaryOrgId: salaryOrg?.id,
amountSpecial: IsNull() || 0,
amountUse: MoreThan(1),
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
"amountUse",
"positionSalaryAmount",
],
order: {
posMasterNo: "ASC",
},
});
const mapData = salaryProfile.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position: item.position,
posType: item.posType,
posLevel: item.posLevel,
posMasterNo: Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
positionSalaryAmount:
item.positionSalaryAmount == undefined || item.positionSalaryAmount == null
? ""
: Extension.ToThaiNumber(String(item.positionSalaryAmount)),
remark: null,
}));
return mapData;
}
/**
* APIคำสั่งค่าตอบแทนพิเศษ
*
* @summary
*
* @param {string} rootId Guid, *Id Root
* @param {string} salaryPeriodId Guid, *Id Period
*/
2024-03-18 16:11:13 +07:00
@Get("gov1-08/{rootId}/{salaryPeriodId}")
async SalaryReport8(@Path() rootId: string, @Path() salaryPeriodId: string) {
2024-03-18 13:07:09 +07:00
const salaryPeriod = await this.salaryPeriodRepository.findOne({
where: {
id: salaryPeriodId,
period: "APR",
isActive: true,
},
});
if (!salaryPeriod) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน");
}
const salaryOrg = await this.salaryOrgRepository.findOne({
where: {
salaryPeriodId: salaryPeriodId,
rootId: rootId,
snapshot: "SNAP2",
},
order: {
group: "ASC",
},
relations: ["salaryProfiles"],
});
const salaryProfileSpecial = await this.salaryProfileRepository.find({
where: {
salaryOrgId: salaryOrg?.id,
amountSpecial: MoreThan(1),
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
"amountSpecial",
],
order: {
posMasterNo: "ASC",
},
});
const salaryProfileNoAmount = await this.salaryProfileRepository.find({
where: {
salaryOrgId: salaryOrg?.id,
amountUse: IsNull() || 0,
positionSalaryAmount: IsNull() || 0,
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"root",
"position",
"posType",
"posLevel",
"orgShortName",
"posMasterNo",
"amount",
],
order: {
posMasterNo: "ASC",
},
});
const profileSpecial = salaryProfileSpecial.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position: item.position,
posType: item.posType,
posLevel: item.posLevel,
posMasterNo: Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
amountSpecial:
item.amountSpecial == undefined || item.amountSpecial == null
? ""
: Extension.ToThaiNumber(String(item.amountSpecial)),
remark: null,
}));
const profileNoAmount = salaryProfileNoAmount.map((item, index) => ({
no: Extension.ToThaiNumber(String(index + 1)),
fullname: item.prefix + item.firstName + " " + item.lastName,
position: item.position,
posType: item.posType,
posLevel: item.posLevel,
posMasterNo: Extension.ToThaiNumber(String(item.posMasterNo)),
amount:
item.amount == undefined || item.amount == null
? ""
: Extension.ToThaiNumber(String(item.amount)),
remark: null,
}));
const mapData = {
profileSpecial,
profileNoAmount,
};
return mapData;
}
}