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"; 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"; 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); private salaryPeriodRepository = AppDataSource.getRepository(SalaryPeriod); private salaryOrgRepository = AppDataSource.getRepository(SalaryOrg); private salaryProfileRepository = AppDataSource.getRepository(SalaryProfile); /** * API รายงานอัตราเงินเดือน * * @summary รายงานอัตราเงินเดือน * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("{id}") async SalaryReport(@Path() id: string) { const salarys = await this.salaryRepository.findOne({ where: { id: id }, }); if (!salarys) { 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" ? "ผังลูกจ้างประจำกรุงเทพมหานคร" : "", 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()), details: salarys.details == null ? "" : salarys.details, salaryRanks: mapSalaryRank, }, }); } /** * 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, }, }); } /** * API รายชื่อข้าราชการผู้ที่ครองตำแหน่ง ณ วันที่ 1 มีนาคม * * @summary รายชื่อข้าราชการผู้ที่ครองตำแหน่ง ณ วันที่ 1 มีนาคม * */ @Get("gov-01/{rootId}/{salaryPeriodId}") async SalaryReport1(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = _salaryPeriod[0] == null ? "" : _salaryPeriod[0].root; const formattedData = _salaryPeriod.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 new HttpSuccess({ template: salaryPeriod.period == "APR" ? "gov1-01" : "gov2-01", reportName: salaryPeriod.period == "APR" ? "gov1-01" : "gov2-01", data: { year: Extension.ToThaiNumber((salaryPeriod.year + 543).toString()), agency: agency, data: formattedData, }, }); } /** * API บัญชีการคำนวณโควตาเลื่อนเงินเดือน รอบเมษายน * * @summary บัญชีการคำนวณโควตาเลื่อนเงินเดือน รอบเมษายน * */ @Get("gov-02/{rootId}/{salaryPeriodId}") async SalaryReport2(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryPeriod = await this.salaryOrgRepository.find({ relations: ["salaryPeriod", "salaryProfiles"], where: { snapshot: "SNAP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, order: { group: "ASC" }, }); const agency = _salaryPeriod[0] == null || _salaryPeriod[0].salaryProfiles[0] == null ? "" : _salaryPeriod[0].salaryProfiles[0].root; if (salaryPeriod.period == "APR") { let data1 = _salaryPeriod.find((x) => x.group == "GROUP2"); let formattedData1; if (data1 != null) { formattedData1 = { total: Extension.ToThaiNumber(data1.total.toString()), fifteenPercent: Extension.ToThaiNumber(data1.fifteenPercent.toString()), full: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "FULL").length.toString(), ), haft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), notPromoted: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "NONE").length.toString(), ), reason: null, }; } let data2 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData2; if (data2 != null) { formattedData2 = { total: Extension.ToThaiNumber(data2.total.toString()), fifteenPercent: Extension.ToThaiNumber(data2.fifteenPercent.toString()), full: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULL") .length.toString(), ), haft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "HAFT") .length.toString(), ), notPromoted: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "NONE") .length.toString(), ), reason: null, }; } let data3 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData3; if (data3 != null) { formattedData3 = { total: Extension.ToThaiNumber(data3.total.toString()), fifteenPercent: Extension.ToThaiNumber(data3.fifteenPercent.toString()), full: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "FULL") .length.toString(), ), haft: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "HAFT") .length.toString(), ), notPromoted: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "NONE") .length.toString(), ), reason: null, }; } let data4 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData4; if (data4 != null) { formattedData4 = { total: Extension.ToThaiNumber(data4.total.toString()), fifteenPercent: Extension.ToThaiNumber(data4.fifteenPercent.toString()), full: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "FULL").length.toString(), ), haft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), notPromoted: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "NONE").length.toString(), ), reason: null, }; } return new HttpSuccess({ template: "gov1-02", reportName: "gov1-02", data: { date: Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-03-01`)), ), dateNow: Extension.ToThaiNumber(Extension.ToThaiFullDate(new Date())), agency: agency, data1: formattedData1, data2: formattedData2, data3: formattedData3, data4: formattedData4, }, }); } else { let data1 = _salaryPeriod.find((x) => x.group == "GROUP2"); const _salaryPeriodAPR = await this.salaryOrgRepository.find({ where: { snapshot: "SNAP1", rootId: rootId, salaryPeriod: { period: "APR", year: salaryPeriod.year, }, }, order: { group: "ASC" }, }); let formattedData1; if (data1 != null) { const haftSalary = data1.salaryProfiles .filter((x) => x.type == "HAFT") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data1.salaryProfiles .filter((x) => x.type == "FULL") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data1.salaryProfiles .filter((x) => x.type == "NONE") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData1 = { totalSalary: Extension.ToThaiNumber(data1.currentAmount.toString()), totalUser: Extension.ToThaiNumber(data1.total.toString()), sixPercentAmount: Extension.ToThaiNumber(data1.sixPercentAmount.toString()), spentAmount: Extension.ToThaiNumber(data1.spentAmount.toString()), remainingAmount: Extension.ToThaiNumber( (data1.sixPercentAmount - data1.spentAmount).toString(), ), haft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), full: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "FULL").length.toString(), ), fullHaft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), notPromoted: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "NONE").length.toString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toString()), fullSalary: Extension.ToThaiNumber(fullSalary.toString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toString()), total: Extension.ToThaiNumber((haftSalary + fullSalary + fullHaftSalary).toString()), summary: Extension.ToThaiNumber( ( data1.sixPercentAmount - data1.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toString(), ), reason: null, }; } let data2 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData2; if (data2 != null) { const haftSalary = data2.salaryProfiles .filter((x) => x.type == "HAFT") .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data2.salaryProfiles .filter((x) => x.type == "FULL") .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data2.salaryProfiles .filter((x) => x.type == "NONE") .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData2 = { totalSalary: Extension.ToThaiNumber(data2.currentAmount.toString()), totalUser: Extension.ToThaiNumber(data2.total.toString()), sixPercentAmount: Extension.ToThaiNumber(data2.sixPercentAmount.toString()), spentAmount: Extension.ToThaiNumber(data2.spentAmount.toString()), remainingAmount: Extension.ToThaiNumber( (data2.sixPercentAmount - data2.spentAmount).toString(), ), haft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "HAFT") .length.toString(), ), full: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULL") .length.toString(), ), fullHaft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "HAFT") .length.toString(), ), notPromoted: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "NONE") .length.toString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toString()), fullSalary: Extension.ToThaiNumber(fullSalary.toString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toString()), total: Extension.ToThaiNumber((haftSalary + fullSalary + fullHaftSalary).toString()), summary: Extension.ToThaiNumber( ( data2.sixPercentAmount - data2.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toString(), ), reason: null, }; } let data3 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData3; if (data3 != null) { const haftSalary = data3.salaryProfiles .filter((x) => x.type == "HAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data3.salaryProfiles .filter((x) => x.type == "FULL") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data3.salaryProfiles .filter((x) => x.type == "NONE") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData3 = { totalSalary: Extension.ToThaiNumber(data3.currentAmount.toString()), totalUser: Extension.ToThaiNumber(data3.total.toString()), sixPercentAmount: Extension.ToThaiNumber(data3.sixPercentAmount.toString()), spentAmount: Extension.ToThaiNumber(data3.spentAmount.toString()), remainingAmount: Extension.ToThaiNumber( (data3.sixPercentAmount - data3.spentAmount).toString(), ), haft: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "HAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toString(), ), full: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "FULL") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toString(), ), fullHaft: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "HAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toString(), ), notPromoted: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "NONE") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toString()), fullSalary: Extension.ToThaiNumber(fullSalary.toString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toString()), total: Extension.ToThaiNumber((haftSalary + fullSalary + fullHaftSalary).toString()), summary: Extension.ToThaiNumber( ( data3.sixPercentAmount - data3.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toString(), ), reason: null, }; } let data4 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData4; if (data4 != null) { const haftSalary = data4.salaryProfiles .filter((x) => x.type == "HAFT") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data4.salaryProfiles .filter((x) => x.type == "FULL") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data4.salaryProfiles .filter((x) => x.type == "NONE") .reduce((accumulator, object: any) => { return ( accumulator + (object.amount == null ? 0 : object.amount) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData4 = { totalSalary: Extension.ToThaiNumber(data4.currentAmount.toString()), totalUser: Extension.ToThaiNumber(data4.total.toString()), sixPercentAmount: Extension.ToThaiNumber(data4.sixPercentAmount.toString()), spentAmount: Extension.ToThaiNumber(data4.spentAmount.toString()), remainingAmount: Extension.ToThaiNumber( (data4.sixPercentAmount - data4.spentAmount).toString(), ), haft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), full: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "FULL").length.toString(), ), fullHaft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), notPromoted: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "NONE").length.toString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toString()), fullSalary: Extension.ToThaiNumber(fullSalary.toString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toString()), total: Extension.ToThaiNumber((haftSalary + fullSalary + fullHaftSalary).toString()), summary: Extension.ToThaiNumber( ( data4.sixPercentAmount - data4.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toString(), ), reason: null, }; } return new HttpSuccess({ template: "gov2-02", reportName: "gov2-02", data: { date: Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-03-01`)), ), dateNow: Extension.ToThaiNumber(Extension.ToThaiFullDate(new Date())), agency: agency, data1: formattedData1, data2: formattedData2, data3: formattedData3, data4: formattedData4, }, }); } } /** * API รายชื่อข้าราชการที่ได้รับการเสนอขอเลื่อนหนึ่งขั้น * * @summary รายชื่อข้าราชการที่ได้รับการเสนอขอเลื่อนหนึ่งขั้น * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov1-03/{rootId}/{salaryPeriodId}") async SalaryReport3(@Path() rootId: string, @Path() salaryPeriodId: string) { 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 salaryPeriodIncrease1_APR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod.year - 2, isActive: true, }, }); const salaryPeriodIncrease1_OCT = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod.year - 2, isActive: true, }, }); const salaryOrg1_APR = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease1_APR?.id, rootId: rootId, snapshot: "SNAP2", } }); const salaryOrg1_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease1_OCT?.id, rootId: rootId, snapshot: "SNAP2", } }); const salaryProfile1 = await this.salaryProfileRepository.find({ where: { salaryOrgId: In([salaryOrg1_APR?.id, salaryOrg1_OCT?.id]), type: "FULL", } }); //รอบปีก่อนหน้า const salaryPeriodIncrease2_APR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod.year - 1, isActive: true, }, }); const salaryPeriodIncrease2_OCT = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod.year - 1, isActive: true, }, }); const salaryOrg2_APR = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease2_APR?.id, rootId: rootId, snapshot: "SNAP2", } }); const salaryOrg2_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease2_OCT?.id, rootId: rootId, snapshot: "SNAP2", } }); const salaryProfile2 = await this.salaryProfileRepository.find({ where: { salaryOrgId: In([salaryOrg2_APR?.id, salaryOrg2_OCT?.id]), type: "FULL", } }); return new HttpSuccess({ template: "gov1-03", reportName: "gov1-03", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), root: salaryProfile[0]?.root, profile: salaryProfile.map((item, index) => ({ no: Extension.ToThaiNumber(String(index + 1)), fullname: (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) + "/" + item.prefix + item.firstName + " " + item.lastName, // สังกัด/ชื่อ-นามสกุล posLevel: item.posLevel, posMasterNo: Extension.ToThaiNumber(String(item.posMasterNo)), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), salaryIncrease1: salaryProfile1.length > 0 ? salaryProfile1 .filter(profile => profile.citizenId === item.citizenId) .map(profile => profile.amount) : "๐", //การเลื่อนเงินเดือนปีก่อนๆหน้า salaryIncrease2: salaryProfile2.length > 0 ? salaryProfile2 .filter(profile => profile.citizenId === item.citizenId) .map(profile => profile.amount) : "๐", //การเลื่อนเงินเดือนปีก่อนหน้า score: null, //ผลการประเมินฯ remark: null, //หมายเหตุ })), }, }); } /** * API แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน * * @summary แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov1-04/{rootId}/{salaryPeriodId}") async SalaryReport4(@Path() rootId: string, @Path() salaryPeriodId: string) { 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: Not("NONE"), //ทุก Type ยกเว้นไม่ได้เลื่อน }, select: [ "id", "prefix", "firstName", "lastName", "root", "position", "posType", "posLevel", "orgShortName", "posMasterNo", "amount", "amountSpecial", ], order: { posMasterNo: "ASC", }, }); return new HttpSuccess({ template: "gov1-04", reportName: "gov1-04", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod?.year))), 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, //หมายเหตุ })), }, }); } /** * 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) { 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: "NONE", //ไม่ได้เลื่อน }, 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(){ // } /** * API คำสั่งเลื่อนเงินเดือน รอบเมษายน * * @summary คำสั่งเลื่อนเงินเดือน รอบเมษายน * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov1-07/{rootId}/{salaryPeriodId}") async SalaryReport7(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const salaryProfile = await this.salaryProfileRepository.find({ where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, salaryPeriod: { period: "APR", }, }, }, order: { type: "DESC", orgShortName: "ASC", posMasterNo: "ASC", }, }); const agency = salaryProfile[0] == null ? "" : salaryProfile[0].root; const formattedData = 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), posType: item.posType, posLevel: item.posLevel, posMasterNo: item.orgShortName + 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)) + (item.amountSpecial > 0 ? `(${Extension.ToThaiNumber(String(item.positionSalaryAmount))})` : ""), remark: (item.type == "FULL" ? `หนึ่งขั้น ` : item.type == "FULLHAFT" ? `หนึ่งขั้นครึ่ง ` : "") + (item.isNext == true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""), })); return new HttpSuccess({ template: "gov1-07", reportName: "gov1-07", data: { year: Extension.ToThaiNumber((salaryPeriod.year + 543).toString()), yearOld: Extension.ToThaiNumber((salaryPeriod.year + 542).toString()), date: Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-04-01`)), ), agency: agency, data: formattedData, }, }); } /** * APIคำสั่งค่าตอบแทนพิเศษ และผู้ไม่ได้เลื่อน รอบเมษายน * * @summary คำสั่งค่าตอบแทนพิเศษ และผู้ไม่ได้เลื่อน รอบเมษายน * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov1-08/{rootId}/{salaryPeriodId}") async SalaryReport8(@Path() rootId: string, @Path() salaryPeriodId: string) { 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; } }