import { Controller, Get, Post, Route, Security, Tags, Body, Path, Request, SuccessResponse, Response, } 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, Double } 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"; import { EmployeePosType } from "../entities/EmployeePosType"; import { EmployeePosLevel } from "../entities/EmployeePosLevel"; import { SalaryOrgEmployee } from "../entities/SalaryOrgEmployee"; import { SalaryProfileEmployee } from "../entities/SalaryProfileEmployee"; import { setLogDataDiff } from "../interfaces/utils"; import { RequestWithUser } from "../middlewares/user"; import CallAPI from "../interfaces/call-api"; @Route("api/v1/salary/report") @Tags("Report") @Security("bearerAuth") @Response( HttpStatusCode.INTERNAL_SERVER_ERROR, "เกิดข้อผิดพลาด ไม่สามารถแสดงรายการได้ กรุณาลองใหม่ในภายหลัง", ) @SuccessResponse(HttpStatusCode.OK, "สำเร็จ") export class ReportController extends Controller { private salaryPeriodRepository = AppDataSource.getRepository(SalaryPeriod); 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 salaryOrgRepository = AppDataSource.getRepository(SalaryOrg); private salaryOrgEmployeeRepository = AppDataSource.getRepository(SalaryOrgEmployee); private salaryProfileRepository = AppDataSource.getRepository(SalaryProfile); private salaryProfileEmployeeRepository = AppDataSource.getRepository(SalaryProfileEmployee); /** * 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) => ({ // 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: "ผังข้าราชการกรุงเทพมหานครสามัญ", 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) => ({ 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 มีนาคม(รอบเมษายน) และ ณ วันที่ 1 กันยายน(รอบตุลาคม) * * @summary รายชื่อข้าราชการผู้ที่ครองตำแหน่ง ณ วันที่ 1 มีนาคม(รอบเมษายน) และ ณ วันที่ 1 กันยายน(รอบตุลาคม) * */ @Get("gov-01/{rootId}/{salaryPeriodId}/{group}") async SalaryReport1( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP1", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); // const _salaryPeriod1 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP1", // }, // type: "HAFT", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod2 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP1", // }, // type: "FULL", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod3 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP1", // }, // type: "NONE", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod4 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP2", // }, // type: "HAFT", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod5 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP2", // }, // type: "FULL", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod6 = await this.salaryProfileRepository.find({ // relations: ["salaryOrg", "salaryOrg.salaryPeriod"], // where: { // salaryOrg: { // snapshot: "SNAP1", // rootId: rootId, // salaryPeriodId: salaryPeriodId, // group: "GROUP2", // }, // type: "NONE", // }, // order: { // citizenId: "ASC", // isReserve: "ASC", // }, // }); // const _salaryPeriod = _salaryPeriod1.concat( // _salaryPeriod2, // _salaryPeriod3, // _salaryPeriod4, // _salaryPeriod5, // _salaryPeriod6, // ); if (!_salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), 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(String(Extension.ToThaiYear(salaryPeriod.year))), agency: root, 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, }, }); 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.toLocaleString()), fifteenPercent: Extension.ToThaiNumber(data1.fifteenPercent.toLocaleString()), full: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "FULL").length.toLocaleString(), ), haft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "HAFT").length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "NONE").length.toLocaleString(), ), reason: null, }; } let data2 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData2; if (data2 != null) { formattedData2 = { total: Extension.ToThaiNumber(data2.total.toLocaleString()), fifteenPercent: Extension.ToThaiNumber(data2.fifteenPercent.toLocaleString()), full: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULL") .length.toLocaleString(), ), haft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "HAFT") .length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "NONE") .length.toLocaleString(), ), reason: null, }; } let data3 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData3; if (data3 != null) { formattedData3 = { total: Extension.ToThaiNumber(data3.total.toLocaleString()), fifteenPercent: Extension.ToThaiNumber(data3.fifteenPercent.toLocaleString()), full: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "FULL") .length.toLocaleString(), ), haft: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "HAFT") .length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data3.salaryProfiles .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .filter((x) => x.type == "NONE") .length.toLocaleString(), ), reason: null, }; } let data4 = _salaryPeriod.find((x) => x.group == "GROUP1"); let formattedData4; if (data4 != null) { formattedData4 = { total: Extension.ToThaiNumber(data4.total.toLocaleString()), fifteenPercent: Extension.ToThaiNumber(data4.fifteenPercent.toLocaleString()), full: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "FULL").length.toLocaleString(), ), haft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "HAFT").length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "NONE").length.toLocaleString(), ), reason: null, }; } return new HttpSuccess({ template: "gov1-02", reportName: "gov1-02", data: { // date: Extension.ToThaiNumber( // Extension.ToThaiFullDate2(new Date(`${salaryPeriod.year}-03-01`)), // ), year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearSlice: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year)).slice(-2), ), // dateNow: Extension.ToThaiNumber(Extension.ToThaiShortDate(new Date())), agency: agency, data1: formattedData1, data2: formattedData2, data3: formattedData3, data4: formattedData4, }, }); } else { let data1 = _salaryPeriod.find((x) => x.group == "GROUP2"); const _salaryPeriodAPR1 = await this.salaryOrgRepository.findOne({ where: { snapshot: "SNAP1", group: "GROUP1", rootId: rootId, salaryPeriod: { period: "APR", year: salaryPeriod.year, }, }, relations: { salaryProfiles: true }, }); const _salaryPeriodAPR2 = await this.salaryOrgRepository.findOne({ where: { snapshot: "SNAP1", group: "GROUP2", rootId: rootId, salaryPeriod: { period: "APR", year: salaryPeriod.year, }, }, relations: { salaryProfiles: true }, }); let formattedData1; if (data1 != null) { const haftSalary = data1.salaryProfiles .filter((x) => x.type == "HAFT") .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data1.salaryProfiles .filter((x) => x.type == "FULL") .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data1.salaryProfiles .filter((x) => x.type == "FULLHAFT") .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData1 = { totalSalary: Extension.ToThaiNumber(data1.currentAmount.toLocaleString()), totalUser: Extension.ToThaiNumber(data1.total.toLocaleString()), sixPercentAmount: Extension.ToThaiNumber(data1.sixPercentAmount.toLocaleString()), spentAmount: Extension.ToThaiNumber(data1.spentAmount.toLocaleString()), remainingAmount: Extension.ToThaiNumber(data1.remainingAmount.toLocaleString()), fifteenPercentOld: Extension.ToThaiNumber( (_salaryPeriodAPR2 == null ? 0 : _salaryPeriodAPR2.fifteenPercent).toLocaleString(), ), totalOld: Extension.ToThaiNumber( (_salaryPeriodAPR2 == null || _salaryPeriodAPR2.salaryProfiles.length == 0 ? 0 : _salaryPeriodAPR2.salaryProfiles.filter((x) => x.type == "FULL").length ).toLocaleString(), ), haft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "HAFT").length.toLocaleString(), ), full: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "FULL").length.toLocaleString(), ), fullHaft: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "FULLHAFT").length.toString(), ), notPromoted: Extension.ToThaiNumber( data1.salaryProfiles.filter((x) => x.type == "NONE").length.toLocaleString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toLocaleString()), fullSalary: Extension.ToThaiNumber(fullSalary.toLocaleString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toLocaleString()), total: Extension.ToThaiNumber( (haftSalary + fullSalary + fullHaftSalary).toLocaleString(), ), summary: Extension.ToThaiNumber( ( data1.sixPercentAmount - data1.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toLocaleString(), ), 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.amountUse == null ? 0 : object.amountUse) + (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.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data2.salaryProfiles .filter((x) => x.type == "FULLHAFT") .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData2 = { totalSalary: Extension.ToThaiNumber(data2.currentAmount.toLocaleString()), totalUser: Extension.ToThaiNumber(data2.total.toLocaleString()), sixPercentAmount: Extension.ToThaiNumber(data2.sixPercentAmount.toLocaleString()), spentAmount: Extension.ToThaiNumber(data2.spentAmount.toLocaleString()), remainingAmount: Extension.ToThaiNumber(data2.remainingAmount.toLocaleString()), fifteenPercentOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null ? 0 : _salaryPeriodAPR1.fifteenPercent).toLocaleString(), ), totalOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null || _salaryPeriodAPR1.salaryProfiles.length == 0 ? 0 : _salaryPeriodAPR1.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULL").length ).toLocaleString(), ), haft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "HAFT") .length.toLocaleString(), ), full: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULL") .length.toLocaleString(), ), fullHaft: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "FULLHAFT") .length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data2.salaryProfiles .filter( (x) => x.posLevel == "อาวุโส" || x.posLevel == "ชำนาญการพิเศษ" || (x.posLevel == "ต้น" && x.posType == "อำนวยการ"), ) .filter((x) => x.type == "NONE") .length.toLocaleString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toLocaleString()), fullSalary: Extension.ToThaiNumber(fullSalary.toLocaleString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toLocaleString()), total: Extension.ToThaiNumber( (haftSalary + fullSalary + fullHaftSalary).toLocaleString(), ), summary: Extension.ToThaiNumber( ( data2.sixPercentAmount - data2.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toLocaleString(), ), 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.amountUse == null ? 0 : object.amountUse) + (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.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data3.salaryProfiles .filter((x) => x.type == "FULLHAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData3 = { totalSalary: Extension.ToThaiNumber(data3.currentAmount.toLocaleString()), totalUser: Extension.ToThaiNumber(data3.total.toLocaleString()), sixPercentAmount: Extension.ToThaiNumber(data3.sixPercentAmount.toLocaleString()), spentAmount: Extension.ToThaiNumber(data3.spentAmount.toLocaleString()), remainingAmount: Extension.ToThaiNumber(data3.remainingAmount.toLocaleString()), fifteenPercentOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null ? 0 : _salaryPeriodAPR1.fifteenPercent).toLocaleString(), ), totalOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null || _salaryPeriodAPR1.salaryProfiles.length == 0 ? 0 : _salaryPeriodAPR1.salaryProfiles .filter((x) => x.type == "FULL") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ).length ).toLocaleString(), ), haft: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "HAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toLocaleString(), ), full: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "FULL") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toLocaleString(), ), fullHaft: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "FULLHAFT") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data3.salaryProfiles .filter((x) => x.type == "NONE") .filter( (x) => x.posLevel == "ปฏิบัติงาน" || x.posLevel == "ชำนาญงาน" || x.posLevel == "ปฏิบัติการ" || x.posLevel == "ชำนาญการ", ) .length.toLocaleString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toLocaleString()), fullSalary: Extension.ToThaiNumber(fullSalary.toLocaleString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toLocaleString()), total: Extension.ToThaiNumber( (haftSalary + fullSalary + fullHaftSalary).toLocaleString(), ), summary: Extension.ToThaiNumber( ( data3.sixPercentAmount - data3.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toLocaleString(), ), 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.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullSalary = data4.salaryProfiles .filter((x) => x.type == "FULL") .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); const fullHaftSalary = data4.salaryProfiles .filter((x) => x.type == "FULLHAFT") .reduce((accumulator, object: any) => { return ( accumulator + (object.amountUse == null ? 0 : object.amountUse) + (object.amountSpecial == null ? 0 : object.amountSpecial) ); }, 0); formattedData4 = { totalSalary: Extension.ToThaiNumber(data4.currentAmount.toLocaleString()), totalUser: Extension.ToThaiNumber(data4.total.toLocaleString()), sixPercentAmount: Extension.ToThaiNumber(data4.sixPercentAmount.toLocaleString()), spentAmount: Extension.ToThaiNumber(data4.spentAmount.toLocaleString()), remainingAmount: Extension.ToThaiNumber(data4.remainingAmount.toLocaleString()), fifteenPercentOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null ? 0 : _salaryPeriodAPR1.fifteenPercent).toLocaleString(), ), totalOld: Extension.ToThaiNumber( (_salaryPeriodAPR1 == null || _salaryPeriodAPR1.salaryProfiles.length == 0 ? 0 : _salaryPeriodAPR1.salaryProfiles.filter((x) => x.type == "FULL").length ).toLocaleString(), ), haft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "HAFT").length.toLocaleString(), ), full: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "FULL").length.toLocaleString(), ), fullHaft: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "FULLHAFT").length.toLocaleString(), ), notPromoted: Extension.ToThaiNumber( data4.salaryProfiles.filter((x) => x.type == "NONE").length.toLocaleString(), ), haftSalary: Extension.ToThaiNumber(haftSalary.toLocaleString()), fullSalary: Extension.ToThaiNumber(fullSalary.toLocaleString()), fullHaftSalary: Extension.ToThaiNumber(fullHaftSalary.toLocaleString()), total: Extension.ToThaiNumber( (haftSalary + fullSalary + fullHaftSalary).toLocaleString(), ), summary: Extension.ToThaiNumber( ( data4.sixPercentAmount - data4.spentAmount - haftSalary - fullSalary - fullHaftSalary ).toLocaleString(), ), reason: null, }; } return new HttpSuccess({ template: "gov2-02", reportName: "gov2-02", data: { // date: Extension.ToThaiNumber( // Extension.ToThaiFullDate2(new Date(`${salaryPeriod.year}-03-01`)), // ), year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearSlice: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year)).slice(-2), ), // dateNow: Extension.ToThaiNumber(Extension.ToThaiShortDate(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("gov-03/{rootId}/{salaryPeriodId}/{group}") async SalaryReport3( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const salaryOrg = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodId, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); if (salaryPeriod.period === "APR") { let salaryProfileGroup1: any; let salaryProfileGroup2: any; if (salaryOrg) { salaryProfileGroup1 = await this.salaryProfileRepository.find({ where: { salaryOrgId: salaryOrg?.id, type: "FULL", //หนึ่งขั้น }, }); } //รอบปีก่อนๆ 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: "SNAP1", group: convertGroup, }, }); const salaryOrg1_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease1_OCT?.id, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); 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: "SNAP1", group: convertGroup, }, }); const salaryOrg2_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease2_OCT?.id, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); const salaryProfile2 = await this.salaryProfileRepository.find({ where: { salaryOrgId: In([salaryOrg2_APR?.id, salaryOrg2_OCT?.id]), // type: "FULL", }, }); const year = Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))); const yearIncrease1 = Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 2)), ); const yearIncrease2 = Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)), ); const fifteenPercent_Group1 = salaryOrg?.fifteenPercent == undefined || salaryOrg?.fifteenPercent == null ? "๐" : Extension.ToThaiNumber(String(salaryOrg?.fifteenPercent)); const fifteenPoint_Group1 = salaryOrg?.fifteenPoint == undefined || salaryOrg?.fifteenPoint == null ? ".๐๐" : "." + Extension.ToThaiNumber(String(salaryOrg?.fifteenPoint)); const fifteenPercent_Group2 = salaryOrg?.fifteenPercent == undefined || salaryOrg?.fifteenPercent == null ? "๐" : Extension.ToThaiNumber(String(salaryOrg?.fifteenPercent)); const fifteenPoint_Group2 = salaryOrg?.fifteenPoint == undefined || salaryOrg?.fifteenPoint == null ? ".๐๐" : "." + Extension.ToThaiNumber(String(salaryOrg?.fifteenPoint)); return new HttpSuccess({ template: "gov1-03", reportName: "gov1-03", data: { year: year, yearIncrease1: yearIncrease1, yearIncrease2: yearIncrease2, yearIncreaseSlice: yearIncrease2.slice(-2), yearSlice: year.slice(-2), point: fifteenPercent_Group1 + fifteenPoint_Group1, pointGroup2: fifteenPercent_Group2 + fifteenPoint_Group2, root: salaryOrg?.root, profile: salaryProfileGroup1 ? salaryProfileGroup1.map((item: any, index: any) => ({ no: Extension.ToThaiNumber(String(index + 1)), affiliation: (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), // สังกัด fullName: item.prefix + item.firstName + " " + item.lastName, posLevel: item.posLevel, posMasterNo: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), salaryIncrease1: salaryProfile1.length > 0 ? (() => { const filteredType = salaryProfile1 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนๆหน้า salaryIncrease2: salaryProfile2.length > 0 ? (() => { const filteredType = salaryProfile2 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนหน้า score: item.result, //ผลการประเมินฯ remark: item.remark, //หมายเหตุ })) : null, profileGroup2: salaryProfileGroup2 ? salaryProfileGroup2.map((item: any, index: any) => ({ no: Extension.ToThaiNumber(String(index + 1)), affiliation: (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), // สังกัด/ชื่อ-นามสกุล fullName: item.prefix + item.firstName + " " + item.lastName, posLevel: item.posLevel, posMasterNo: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), salaryIncrease1: salaryProfile1.length > 0 ? (() => { const filteredType = salaryProfile1 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนๆหน้า salaryIncrease2: salaryProfile2.length > 0 ? (() => { const filteredType = salaryProfile2 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนหน้า score: item.result, //ผลการประเมินฯ remark: item.remark, //หมายเหตุ })) : null, }, }); } else if (salaryOrg && salaryPeriod.period === "OCT") { // find period APR const salaryPeriod_APR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod?.year, isActive: true, }, }); const salaryOrg_APR = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriod_APR?.id, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); const salaryProfile_APR = await this.salaryProfileRepository.find({ where: { salaryOrgId: salaryOrg_APR?.id, // type: In(["HAFT", "FULL"]), }, }); //end period APR const salaryProfileGroup1 = await this.salaryProfileRepository.find({ where: { salaryOrgId: salaryOrg?.id, type: In(["FULLHAFT", "FULL"]), }, }); const salaryProfileGroup2 = await this.salaryProfileRepository.find({ where: { salaryOrgId: salaryOrg?.id, type: In(["FULLHAFT", "FULL"]), }, }); //รอบปีก่อนๆ 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: "SNAP1", group: convertGroup, }, }); const salaryOrg1_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease1_OCT?.id, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); 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: "SNAP1", group: convertGroup, }, }); const salaryOrg2_OCT = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodIncrease2_OCT?.id, rootId: rootId, snapshot: "SNAP1", group: convertGroup, }, }); const salaryProfile2 = await this.salaryProfileRepository.find({ where: { salaryOrgId: In([salaryOrg2_APR?.id, salaryOrg2_OCT?.id]), // type: "FULL", }, }); const year = Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))); const yearIncrease1 = Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 2)), ); const yearIncrease2 = Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)), ); const fifteenPercent = salaryOrg?.fifteenPercent == undefined || salaryOrg?.fifteenPercent == null ? "๐" : Extension.ToThaiNumber(String(salaryOrg?.fifteenPercent)); const fifteenPoint = salaryOrg?.fifteenPoint == undefined || salaryOrg?.fifteenPoint == null ? ".๐๐" : "." + Extension.ToThaiNumber(String(salaryOrg?.fifteenPoint)); const fifteenPercent_Group2 = salaryOrg?.fifteenPercent == undefined || salaryOrg?.fifteenPercent == null ? "๐" : Extension.ToThaiNumber(String(salaryOrg?.fifteenPercent)); const fifteenPoint_Group2 = salaryOrg?.fifteenPoint == undefined || salaryOrg?.fifteenPoint == null ? ".๐๐" : "." + Extension.ToThaiNumber(String(salaryOrg?.fifteenPoint)); return new HttpSuccess({ template: "gov2-03", reportName: "gov2-03", data: { year: year, yearIncrease1: yearIncrease1, yearIncrease2: yearIncrease2, yearIncreaseSlice: yearIncrease2.slice(-2), yearSlice: year.slice(-2), point: fifteenPercent + fifteenPoint, pointGroup2: fifteenPercent_Group2 + fifteenPoint_Group2, root: salaryOrg?.root, profile: salaryProfileGroup1 ? salaryProfileGroup1.map((item: any, index: any) => ({ no: Extension.ToThaiNumber(String(index + 1)), affiliation: (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), fullName: item.prefix + item.firstName + " " + item.lastName, posLevel: item.posLevel, posMasterNo: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), salaryIncrease1: salaryProfile1.length > 0 ? (() => { const filteredType = salaryProfile1 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนๆหน้า salaryIncrease2: salaryProfile2.length > 0 ? (() => { const filteredType = salaryProfile2 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนหน้า salaryIncreaseAPR: salaryProfile_APR.length > 0 ? (() => { const filteredType = salaryProfile_APR .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนรอบเมษา Type: item.type === "FULL" ? "หนึ่งขั้น" : item.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : null, score1: item.result, //ผลการประเมินฯ ครั้งที่ 1 score2: null, //ผลการประเมินฯ ครั้งที่ 2 })) : null, profileGroup2: salaryProfileGroup2 ? salaryProfileGroup2.map((item, index) => ({ no: Extension.ToThaiNumber(String(index + 1)), affiliation: (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), fullName: item.prefix + item.firstName + " " + item.lastName, posLevel: item.posLevel, posMasterNo: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), salaryIncrease1: salaryProfile1.length > 0 ? (() => { const filteredType = salaryProfile1 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนๆหน้า salaryIncrease2: salaryProfile2.length > 0 ? (() => { const filteredType = salaryProfile2 .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนปีก่อนหน้า salaryIncreaseAPR: salaryProfile_APR.length > 0 ? (() => { const filteredType = salaryProfile_APR .filter((profile) => profile.citizenId === item.citizenId) .map((profile) => profile.type); const Type = filteredType[0]; return Type === "HAFT" ? "ครึ่งขั้น" : Type === "FULL" ? "หนึ่งขั้น" : Type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : "ไม่ได้เลื่อนขั้น"; })() : null, //การเลื่อนเงินเดือนรอบเมษา Type: item.type === "FULL" ? "หนึ่งขั้น" : item.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : null, score1: item.result, //ผลการประเมินฯ ครั้งที่ 1 score2: null, //ผลการประเมินฯ ครั้งที่ 2 })) : null, }, }); } } /** * API แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม * * @summary แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-04/{rootId}/{salaryPeriodId}/{group}") async SalaryReport4( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, type: In(["HAFT", "FULL", "FULLHAFT"]), isRetired: salaryPeriod.period === "APR" ? In([true, false]) : false, //กรองเฉพาะคนที่ไม่เกษียณเฉพาะรอบตุลา }, order: { salaryOrg: { group: "ASC", }, type: "DESC", orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // const agency = _salaryPeriod[0] == null ? "" : _salaryPeriod[0].root; const formattedData = _salaryPeriod.map((profile, index) => { return { no: Extension.ToThaiNumber(String(index + 1)), fullname: profile.prefix + profile.firstName + " " + profile.lastName, log_group: profile.salaryOrg.group, log_type: profile.type, log_isNext: profile.isNext, // position: // profile.position + // "/" + // (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + // (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + // (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + // (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + // (profile.root == undefined && profile.root == null ? "" : profile.root), position: profile.position, affiliation: (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, orgShortName: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(String(profile.posMasterNo.toLocaleString())), amount: profile.amount == undefined || profile.amount == null || profile.amount == 0 ? "" : Extension.ToThaiNumber(String(profile.amount.toLocaleString())), amountSpecial: (profile.positionSalaryAmount == undefined || profile.positionSalaryAmount == null || profile.positionSalaryAmount == 0 ? "" : Extension.ToThaiNumber(String(profile.positionSalaryAmount.toLocaleString()))) + (profile.amountSpecial == undefined || profile.amountSpecial == null || profile.amountSpecial == 0 ? "" : `(${Extension.ToThaiNumber(String(profile.amountSpecial.toLocaleString()))})`), score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน remark: `${profile.type === "FULL" ? "หนึ่งขั้น" : ""}\n` + `${profile.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : ""}\n` + `${profile.amountSpecial > 0 ? "ได้รับค่าตอบแทนพิเศษ\n" : ""}` + `${profile.isNext === true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""}`, // หมายเหตุ }; }); return new HttpSuccess({ template: salaryPeriod.period == "APR" ? "gov1-04" : "gov2-04", reportName: salaryPeriod.period == "APR" ? "gov1-04" : "gov2-04", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), effectiveDate: salaryPeriod.effectiveDate, root: root, profile: formattedData, }, }); } /** * API แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม (เกษียณอายุราชการ) * * @summary แบบ 1 กท บัญชีรายชื่อผู้สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม (เกษียณอายุราชการ) * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-04-01/{rootId}/{salaryPeriodId}/{group}") async SalaryReport4Retire( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, type: In(["HAFT", "FULL", "FULLHAFT"]), isRetired: true, //กรองเฉพาะคนที่เกษียณ }, order: { salaryOrg: { group: "ASC", }, type: "DESC", orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // const agency = _salaryPeriod[0] == null ? "" : _salaryPeriod[0].root; const formattedData = _salaryPeriod.map((profile, index) => { return { no: Extension.ToThaiNumber(String(index + 1)), fullname: profile.prefix + profile.firstName + " " + profile.lastName, log_group: profile.salaryOrg.group, log_type: profile.type, log_isNext: profile.isNext, position: profile.position, affiliation: (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, orgShortName: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(String(profile.posMasterNo.toLocaleString())), amount: profile.amount == undefined || profile.amount == null || profile.amount == 0 ? "" : Extension.ToThaiNumber(String(profile.amount.toLocaleString())), amountSpecial: (profile.positionSalaryAmount == undefined || profile.positionSalaryAmount == null || profile.positionSalaryAmount == 0 ? "" : Extension.ToThaiNumber(String(profile.positionSalaryAmount.toLocaleString()))) + (profile.amountSpecial == undefined || profile.amountSpecial == null || profile.amountSpecial == 0 ? "" : `(${Extension.ToThaiNumber(String(profile.amountSpecial.toLocaleString()))})`), score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน remark: `${profile.type === "FULL" ? "หนึ่งขั้น" : ""}\n` + `${profile.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : ""}\n` + `${profile.amountSpecial > 0 ? "ได้รับค่าตอบแทนพิเศษ\n" : ""}` + `${profile.isNext === true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""}`, // หมายเหตุ }; }); return new HttpSuccess({ template: salaryPeriod.period == "APR" ? "gov1-04" : "gov2-04-01", reportName: salaryPeriod.period == "APR" ? "gov1-04" : "gov2-04-01", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), effectiveDate: salaryPeriod.effectiveDate, root: root, profile: formattedData, }, }); } /** * API แบบ 2 กท บัญชีรายชื่อผู้ไม่สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม * * @summary แบบ 2 กท บัญชีรายชื่อผู้ไม่สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-05/{rootId}/{salaryPeriodId}/{group}") async SalaryReport5( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, type: "NONE", //ไม่ได้เลื่อน isRetired: salaryPeriod.period === "APR" ? In([true, false]) : false, //กรองเฉพาะคนที่ไม่เกษียณเฉพาะรอบตุลา }, order: { salaryOrg: { group: "ASC", }, orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullname: profile.prefix + profile.firstName + " " + profile.lastName, position: profile.position, affiliation: affiliation, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, //เหตุผล score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน remark: profile.remark, //หมายเหตุ }; }); return new HttpSuccess({ template: salaryPeriod.period == "APR" ? "gov1-05" : "gov2-05", reportName: salaryPeriod.period == "APR" ? "gov1-05" : "gov2-05", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: root, data: formattedData, }, }); } /** * API แบบ 2 กท บัญชีรายชื่อผู้ไม่สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม (เกษียณอายุราชการ) * * @summary แบบ 2 กท บัญชีรายชื่อผู้ไม่สมควรได้เลื่อนเงินเดือน รอบเมษายน และ ตุลาคม (เกษียณอายุราชการ) * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-05-01/{rootId}/{salaryPeriodId}/{group}") async SalaryReport5retire( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const _salaryPeriod = await this.salaryProfileRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, type: "NONE", //ไม่ได้เลื่อน isRetired: true, //กรองเฉพาะคนที่เกษียณ }, order: { salaryOrg: { group: "ASC", }, orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullname: profile.prefix + profile.firstName + " " + profile.lastName, position: profile.position, affiliation: affiliation, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, //เหตุผล score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน remark: profile.remark, //หมายเหตุ }; }); return new HttpSuccess({ template: salaryPeriod.period == "APR" ? "gov1-05" : "gov2-05-01", reportName: salaryPeriod.period == "APR" ? "gov1-05" : "gov2-05-01", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: root, data: formattedData, }, }); } // /* API แบบ 3 กท บัญชีแสดงวันลาครึ่งปี ขรก // * // * @summary แบบ 3 กท บัญชีแสดงวันลาครึ่งปี ขรก // * // * @param {string} rootId Guid, *Id Root // * @param {string} salaryPeriodId Guid, *Id Period // */ // @Get("gov-06/{rootId}/{salaryPeriodId}") // async SalaryReport6(){ // } /** * API คำสั่งเลื่อนเงินเดือน รอบเมษายน และรอบตุลาคม * * @summary คำสั่งเลื่อนเงินเดือน รอบเมษายน และรอบตุลาคม * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-07/{rootId}/{salaryPeriodId}/{group}") async SalaryReport7( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const salaryProfile = await this.salaryProfileRepository.find({ where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, salaryPeriod: { period: salaryPeriod.period === "APR" ? "APR" : "OCT", }, }, }, order: { type: "DESC", orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; // 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, affiliation: (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, posExecutive: item.posExecutive ? item.posExecutive : null, fullPositionName: item.posExecutive ? item.position + " (" + item.posExecutive + ")" : item.position || null, posMasterNo: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), positionSalaryAmount: item.positionSalaryAmount == undefined || item.positionSalaryAmount == null ? "๐" : Extension.ToThaiNumber(String(item.positionSalaryAmount.toLocaleString())) + (item.amountSpecial > 0 ? `(${Extension.ToThaiNumber(String(item.positionSalaryAmount))})` : ""), remark: `${item.type === "FULL" ? "หนึ่งขั้น" : ""}\n` + `${item.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : ""}\n` + `${item.amountSpecial > 0 ? "ได้รับค่าตอบแทนพิเศษ\n" : ""}` + `${item.isNext === true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""}`, })); return new HttpSuccess({ template: salaryPeriod.period === "APR" ? "gov1-07" : "gov2-08", reportName: salaryPeriod.period === "APR" ? "gov1-07" : "gov2-08", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearOld: Extension.ToThaiNumber((salaryPeriod.year + 542).toString()), date: salaryPeriod.period === "APR" ? Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-04-01`)), ) : Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-10-01`)), ), agency: root, data: formattedData, }, }); } /** * API คำสั่งเลื่อนเงินเดือนข้าราชการเกษียณ รอบตุลาคม * * @summary คำสั่งเลื่อนเงินเดือนข้าราชการเกษียณ รอบตุลาคม * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-07-01/{rootId}/{salaryPeriodId}/{group}") async SalaryReport7retire( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const salaryProfile = await this.salaryProfileRepository.find({ where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, salaryPeriod: { period: salaryPeriod.period, }, }, isRetired: true, // เฉพาะคนที่เกษียณ }, order: { type: "DESC", orgShortName: "ASC", posMasterNo: "ASC", }, }); const _root = await this.salaryOrgRepository.findOne({ where: { rootId: rootId, group: convertGroup, salaryPeriodId: salaryPeriodId, }, }); const root = _root?.root == null ? "" : _root.root; const formattedData = salaryProfile.map((item, index) => ({ no: Extension.ToThaiNumber(String(index + 1)), fullname: item.prefix + item.firstName + " " + item.lastName, position: item.position, affiliation: (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: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), positionSalaryAmount: item.positionSalaryAmount == undefined || item.positionSalaryAmount == null ? "๐" : Extension.ToThaiNumber(String(item.positionSalaryAmount.toLocaleString())) + (item.amountSpecial > 0 ? `(${Extension.ToThaiNumber(String(item.positionSalaryAmount))})` : ""), remark: `${item.type === "FULL" ? "หนึ่งขั้น" : ""}\n` + `${item.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : ""}\n` + `${item.amountSpecial > 0 ? "ได้รับค่าตอบแทนพิเศษ\n" : ""}` + `${item.isNext === true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""}`, })); return new HttpSuccess({ template: "gov2-07", reportName: "gov2-07", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearOld: Extension.ToThaiNumber((salaryPeriod.year + 542).toString()), date: Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-10-01`)), ), agency: root, data: formattedData, }, }); } /** * APIคำสั่งค่าตอบแทนพิเศษ และผู้ไม่ได้เลื่อน รอบเมษายน และรอบตุลาคม * * @summary คำสั่งค่าตอบแทนพิเศษ และผู้ไม่ได้เลื่อน รอบเมษายน และรอบตุลาคม * * @param {string} rootId Guid, *Id Root * @param {string} salaryPeriodId Guid, *Id Period */ @Get("gov-08/{rootId}/{salaryPeriodId}/{group}") async SalaryReport8( @Path() rootId: string, @Path() salaryPeriodId: string, @Path() group: string, ) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, // period: "APR", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบรอบการขึ้นเงินเดือน"); } const convertGroup = group.toUpperCase(); const salaryOrg = await this.salaryOrgRepository.findOne({ where: { salaryPeriodId: salaryPeriodId, rootId: rootId, snapshot: "SNAP2", group: convertGroup, }, relations: ["salaryProfiles"], }); const salaryProfileSpecial = await this.salaryProfileRepository.find({ relations: ["salaryOrg"], where: { salaryOrgId: In([salaryOrg?.id]), amountSpecial: MoreThan(0), }, select: [ "id", "prefix", "firstName", "lastName", "root", "position", "posType", "posLevel", "orgShortName", "posMasterNo", "amount", "amountSpecial", "remark", ], order: { salaryOrg: { group: "ASC", }, posMasterNo: "ASC", }, }); const salaryProfileNoAmount = await this.salaryProfileRepository.find({ relations: ["salaryOrg"], where: { salaryOrgId: In([salaryOrg?.id]), // amountUse: IsNull() || 0, // positionSalaryAmount: IsNull() || 0, type: "NONE", }, select: [ "id", "prefix", "firstName", "lastName", "root", "position", "posType", "posLevel", "orgShortName", "posMasterNo", "amount", "remark", ], order: { salaryOrg: { group: "ASC", }, posMasterNo: "ASC", }, }); const profileSpecial = salaryProfileSpecial.map((item, index) => ({ no: Extension.ToThaiNumber(String(index + 1)), fullname: item.prefix + item.firstName + " " + item.lastName, position: item.position, affiliation: (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: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), amountSpecial: item.amountSpecial == undefined || item.amountSpecial == null ? "๐" : Extension.ToThaiNumber(String(item.amountSpecial.toLocaleString())), remark: item.remark ?? null, })); const profileNoAmount = salaryProfileNoAmount.map((item, index) => ({ no: Extension.ToThaiNumber(String(index + 1)), fullname: item.prefix + item.firstName + " " + item.lastName, position: item.position, affiliation: (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: Extension.ToThaiNumber(item.orgShortName) + Extension.ToThaiNumber(String(item.posMasterNo.toLocaleString())), amount: item.amount == undefined || item.amount == null ? "๐" : Extension.ToThaiNumber(String(item.amount.toLocaleString())), remark: item.remark ?? null, })); return new HttpSuccess({ template: salaryPeriod.period === "APR" ? "gov1-08" : "gov2-09", reportName: salaryPeriod.period === "APR" ? "gov1-08" : "gov2-09", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), date: salaryPeriod.period === "APR" ? Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-04-01`)), ) : Extension.ToThaiNumber( Extension.ToThaiFullDate(new Date(`${salaryPeriod.year}-10-01`)), ), agency: salaryOrg?.root, profileSpecial: profileSpecial, profileNoAmount: profileNoAmount, }, }); } /** * API 01-บัญชีคำนวณโควตา * * @summary 01-บัญชีคำนวณโควตา * */ @Get("emp-01/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_1(@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.salaryOrgEmployeeRepository.findOne({ relations: ["salaryPeriod", "salaryProfiles"], where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); const agency = _salaryPeriod == null || _salaryPeriod.salaryProfiles[0] == null ? "" : _salaryPeriod.salaryProfiles[0].root; return new HttpSuccess({ template: "emp1-01", reportName: "emp1-01", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, total: _salaryPeriod == null ? "" : Extension.ToThaiNumber(_salaryPeriod.total.toString()), fifteenPercent: _salaryPeriod == null ? "" : Extension.ToThaiNumber(_salaryPeriod.fifteenPercent.toString()), full: _salaryPeriod == null ? "" : Extension.ToThaiNumber( _salaryPeriod.salaryProfiles.filter((x) => x.type == "FULL").length.toString(), ), haft: _salaryPeriod == null ? "" : Extension.ToThaiNumber( _salaryPeriod.salaryProfiles.filter((x) => x.type == "HAFT").length.toString(), ), notPromoted: _salaryPeriod == null ? "" : Extension.ToThaiNumber( _salaryPeriod.salaryProfiles.filter((x) => x.type == "NONE").length.toString(), ), reason: null, }, }); } /** * API 02-รายชื่อลูกจ้างประจำผู้ครองตำแหน่ง ณ วันที่ 1 มีนาคม * * @summary 02-รายชื่อลูกจ้างประจำผู้ครองตำแหน่ง ณ วันที่ 1 มีนาคม * */ @Get("emp-02/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_2(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp1-02", reportName: "emp1-02", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 03-รายชื่อลูกจ้างประจำที่ได้รับการเสนอขอเลื่อนขั้นค่าจ้างหนึ่งขั้น * * @summary 03-รายชื่อลูกจ้างประจำที่ได้รับการเสนอขอเลื่อนขั้นค่าจ้างหนึ่งขั้น * */ @Get("emp-03/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_3(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: "FULL", salaryOrg: { snapshot: "SNAP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "ASC", }, }); if (!_salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = _salaryPeriod[0] == null ? "" : _salaryPeriod[0].root; const fifteenPercent = (_salaryPeriod[0].salaryOrg == null || _salaryPeriod[0].salaryOrg.fifteenPercent == null ? "" : _salaryPeriod[0].salaryOrg.fifteenPercent.toString()) + "." + (_salaryPeriod[0].salaryOrg == null || _salaryPeriod[0].salaryOrg.fifteenPoint == null ? "๐๐" : _salaryPeriod[0].salaryOrg.fifteenPoint.toString()); const formattedData = _salaryPeriod.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, score: profile.result, reason: profile.remark, }; }); return new HttpSuccess({ template: "emp1-03", reportName: "emp1-03", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), fifteenPercent: Extension.ToThaiNumber(fifteenPercent), yearShort: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year)).substr(-2), ), yearShortOld: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)).substr(-2), ), agency: agency, data: formattedData, }, }); } /** * API 04-แบบ ลจ.กทม.1-รายชื่อลูกจ้างผู้สมควรได้เลื่อนขั้นค่าจ้าง * * @summary 04-แบบ ลจ.กทม.1-รายชื่อลูกจ้างผู้สมควรได้เลื่อนขั้นค่าจ้าง * */ @Get("emp-04/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_4(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: In(["HAFT", "FULL", "FULLHAFT"]), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน reason: profile.remark, }; }); return new HttpSuccess({ template: "emp1-04", reportName: "emp1-04", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 05-แบบ ลจ.กทม.1-1-รายชื่อลูกจ้างผู้สมควรได้รับค่าตอบแทนพิเศษ * * @summary 05-แบบ ลจ.กทม.1-1-รายชื่อลูกจ้างผู้สมควรได้รับค่าตอบแทนพิเศษ * */ @Get("emp-05/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_5(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: In(["HAFT", "FULL", "FULLHAFT"]), isNext: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, amountSpecialFormated: profile.amountSpecial > 0 ? "(" + Extension.ToThaiNumber(profile.amountSpecial.toString()) + ")" : "", amountSpecial: profile.amountSpecial > 0 ? Extension.ToThaiNumber(profile.amountSpecial.toString()) : "", score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน reason: profile.remark, }; }); return new HttpSuccess({ template: "emp1-05", reportName: "emp1-05", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 06-แบบ ลจ.กทม.2-รายชื่อลูกจ้างผู้ไม่สมควรเลื่อนขั้นค่าจ้าง * * @summary 06-แบบ ลจ.กทม.2-รายชื่อลูกจ้างผู้ไม่สมควรเลื่อนขั้นค่าจ้าง * */ @Get("emp-06/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_6(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: In(["NONE"]), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reasonSign: null, score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน reason: profile.remark, //เหตุผลที่ไม่สมควรหรือไม่อาจเลื่อนขั้นค่าจ้าง }; }); return new HttpSuccess({ template: "emp1-06", reportName: "emp1-06", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 07-แบบ ลจ.กทม.2-1-รายชื่อลูกจ้างผู้ไม่สมควรได้รับค่าตอบแทนพิเศษ * * @summary 07-แบบ ลจ.กทม.2-1-รายชื่อลูกจ้างผู้ไม่สมควรได้รับค่าตอบแทนพิเศษ * */ @Get("emp-07/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_7(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isNext: false, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { amount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reasonSign: null, score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน reason: profile.remark, //เหตุผลที่ไม่สมควรหรือไม่อาจเลื่อนขั้นค่าจ้าง }; }); return new HttpSuccess({ template: "emp1-07", reportName: "emp1-07", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } // /** // * API 08-แบบ ลจ.กทม.3-บัญชีแสดงวันลาในครึ่งปีของลูกจ้าง // * // * @summary 08-แบบ ลจ.กทม.3-บัญชีแสดงวันลาในครึ่งปีของลูกจ้าง // * // */ // @Get("emp-08/{rootId}/{salaryPeriodId}") // async SalaryReportEmp1_8(@Path() rootId: string, @Path() salaryPeriodId: string) { // const salaryPeriod = await this.salaryPeriodRepository.findOne({ // where: { // id: salaryPeriodId, // }, // }); // if (!salaryPeriod) { // throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); // } // } /** * API 09-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับเลื่อนขั้นค่าจ้างในวันที่ 1 เมษา ย้อนหลัง 3 ครั้ง * * @summary 09-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับเลื่อนขั้นค่าจ้างในวันที่ 1 เมษา ย้อนหลัง 3 ครั้ง * */ @Get("emp-09/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_9(@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 salaryPeriodAPR = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, year: salaryPeriod.year - 1, period: "APR", isActive: true, }, }); const salaryPeriodOCT = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, year: salaryPeriod.year - 1, period: "OCT", isActive: true, }, }); const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: "NONE", }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _salaryProfileEmpAPR = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodAPR?.id, }, }, }); const _salaryProfileEmpOCT = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodOCT?.id, }, }, }); const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : "๐", type1: _salaryProfileEmpAPR.length > 0 ? (() => { const _profile = _salaryProfileEmpAPR .filter((profileAPR) => profileAPR.citizenId === profile.citizenId) .map((profile) => ({ type: profile.type, isNext: profile.isNext, positionSalaryAmountPer: profile.positionSalaryAmountPer, })); if (_profile[0].isNext) { return _profile[0].positionSalaryAmountPer === 0.02 ? "๒%" : _profile[0].positionSalaryAmountPer === 0.04 ? "๔%" : "๖%"; } return _profile[0].type === "HALF" ? "๐.๕ ขั้น" : _profile[0].type === "FULL" ? "๑ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; })() : null, //เมษา ปีก่อนหน้า type2: _salaryProfileEmpOCT.length > 0 ? (() => { const _profile = _salaryProfileEmpOCT .filter((profileOCT) => profileOCT.citizenId === profile.citizenId) .map((profile) => ({ type: profile.type, isNext: profile.isNext, positionSalaryAmountPer: profile.positionSalaryAmountPer, })); if (_profile[0].isNext) { return _profile[0].positionSalaryAmountPer === 0.02 ? "๒%" : _profile[0].positionSalaryAmountPer === 0.04 ? "๔%" : "๖%"; } return _profile[0].type === "HALF" ? "๐.๕ ขั้น" : _profile[0].type === "FULL" ? "๑ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; })() : null, //ตุลา ปีก่อนหน้า type: profile.isNext === true ? profile.positionSalaryAmountPer === 0.02 ? "๒%" : profile.positionSalaryAmountPer === 0.04 ? "๔%" : "๖%" : profile.type === "HALF" ? "๐.๕ ขั้น" : profile.type === "FULL" ? "๑ ขั้น" : "ไม่ได้เลื่อนขั้นฯ", score: profile.result, //ผลการประเมิน remark: profile.remark, //หมายเหตุ }; }); return new HttpSuccess({ template: "emp1-09", reportName: "emp1-09", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearBeforeSlice: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)).slice(-2), ), yearSlice: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year)).slice(-2), ), agency: agency, data: formattedData, }, }); } /** * API 10-รายชื่อลูกจ้างประจำผู้มีผลการประเมินดีเด่น * * @summary 10-รายชื่อลูกจ้างประจำผู้มีผลการประเมินดีเด่น * */ @Get("emp-10/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_10(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: Not("NONE"), }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = salaryProfileEmp[0] == null ? "" : salaryProfileEmp[0].root; const formattedData = salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(String(profile.posLevel.toLocaleString())) : null, }; }); return new HttpSuccess({ template: "emp1-10", reportName: "emp1-10", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 11-คำสั่ง * * @summary 11-คำสั่ง * */ @Get("emp-11/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_11(@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, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp1-11", reportName: "emp1-11", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 12-บัญชีรายละเอียดผู้ได้รับอัตราค่าจ้างสูงกว่าขั้นสูง (แนบท้ายคำสั่ง) * * @summary 12-บัญชีรายละเอียดผู้ได้รับอัตราค่าจ้างสูงกว่าขั้นสูง (แนบท้ายคำสั่ง) * */ @Get("emp-12/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_12(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: In(["HAFT", "FULL", "FULLHAFT"]), isNext: false, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { positionSalaryAmount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน remark: `${profile.type === "FULL" ? "หนึ่งขั้น" : ""}\n` + `${profile.type === "FULLHAFT" ? "หนึ่งขั้นครึ่ง" : ""}\n` + `${profile.amountSpecial > 0 ? "ได้รับค่าตอบแทนพิเศษ\n" : ""}` + `${profile.isNext === true ? "(ได้รับเงินเดือนสูงกว่าขั้นสูงฯ)" : ""}`, // หมายเหตุ }; }); return new HttpSuccess({ template: "emp1-12", reportName: "emp1-12", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 13-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง * * @summary 13-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง * */ @Get("emp-13/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_13(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: In(["NONE"]), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { positionSalaryAmount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, score: profile.result, //สรุปผลการประเมินฯ ระดับและคะแนน reason: profile.remark, // หมายเหตุ }; }); return new HttpSuccess({ template: "emp1-13", reportName: "emp1-13", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 14-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับค่าตอบแทนพิเศษ * * @summary 14-บัญชีรายชื่อลูกจ้างประจำผู้ไม่ได้รับค่าตอบแทนพิเศษ * */ @Get("emp-14/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_14(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isNext: false, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { positionSalaryAmount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, // หมายเหตุ }; }); return new HttpSuccess({ template: "emp1-14", reportName: "emp1-14", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 15-บัญชีรายละเอียดลูกจ้างประจำที่ได้รับค่าตอบแทนพิเศษ(แนบท้ายคำสั่ง) * * @summary 15-บัญชีรายละเอียดลูกจ้างประจำที่ได้รับค่าตอบแทนพิเศษ(แนบท้ายคำสั่ง) * */ @Get("emp-15/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_15(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isNext: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { positionSalaryAmount: "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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? `${profile.posTypeShort} ${Extension.ToThaiNumber(profile.posLevel.toLocaleString())}` : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, precentTwo: profile.positionSalaryAmountPer == 0.02 ? profile.positionSalaryAmount * profile.positionSalaryAmountPer : null, //ร้อยละ 2 precentFour: profile.positionSalaryAmountPer == 0.04 ? profile.positionSalaryAmount * profile.positionSalaryAmountPer : null, //ร้อยละ 4 reason: null, // หมายเหตุ }; }); return new HttpSuccess({ template: "emp1-15", reportName: "emp1-15", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 17-คำสั่ง * * @summary 17-คำสั่ง * */ @Get("emp-17/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_17(@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, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp1-17", reportName: "emp1-17", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 18-คำสั่ง * * @summary 18-คำสั่ง * */ @Get("emp-18/{rootId}/{salaryPeriodId}") async SalaryReportEmp1_18(@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, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp1-18", reportName: "emp1-18", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 01-บัญชีการคำนวณวงเงินเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร * * @summary 01-บัญชีการคำนวณวงเงินเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร * */ @Get("emp2-01/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_1(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryPeriodAPR = await this.salaryPeriodRepository.findOne({ where: { year: salaryPeriod.year, period: "APR", }, }); if (!salaryPeriodAPR) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือนรอบเดือนเมษายน"); } const aprSnap2 = await this.salaryOrgEmployeeRepository.findOne({ relations: ["salaryPeriod", "salaryProfiles"], where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodAPR.id, }, }); if (!aprSnap2) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const octSnap1 = await this.salaryOrgEmployeeRepository.findOne({ relations: ["salaryPeriod", "salaryProfiles"], where: { snapshot: "SNAP1", group: "GROUP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!octSnap1) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const octSnap2 = await this.salaryOrgEmployeeRepository.findOne({ relations: ["salaryPeriod", "salaryProfiles"], where: { snapshot: "SNAP2", group: "GROUP1", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!octSnap2) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } let fullHaftTotalAmount: any = 0; let fullHaftCount: any = 0; let fullTotalAmount: any = 0; let fullCount: any = 0; let haftTotalAmount: any = 0; let haftCount: any = 0; let noneCount: any = 0; if (octSnap2 && octSnap2.salaryProfiles) { octSnap2.salaryProfiles.forEach((profile: any) => { switch (profile.type) { case "FULLHAFT": // fullHaftTotalAmount += profile.amount ?? 0; fullHaftTotalAmount += profile.amountUse > 0 ? profile.amountUse : 0; fullHaftCount++; break; case "FULL": // fullTotalAmount += profile.amount ?? 0; fullTotalAmount += profile.amountUse > 0 ? profile.amountUse : 0; fullCount++; break; case "HAFT": // haftTotalAmount += profile.amount ?? 0; haftTotalAmount += profile.amountUse > 0 ? profile.amountUse : 0; haftCount++; break; case "NONE": noneCount++; break; default: break; } }); } const emp2step = new Set(); if (octSnap2 && aprSnap2) { octSnap2.salaryProfiles.forEach((octProfile) => { aprSnap2.salaryProfiles.forEach((aprProfile) => { if ( octProfile.citizenId === aprProfile.citizenId && ((octProfile.type === "FULL" && aprProfile.type === "FULL") || (octProfile.type === "HAFT" && aprProfile.type === "FULLHAFT") || (octProfile.type === "FULLHAFT" && aprProfile.type === "HAFT")) ) { emp2step.add(octProfile.citizenId); } }); }); } const totalEmp2step = emp2step.size ?? 0; // const agency = octSnap1.salaryProfiles[0] == null ? "" : octSnap1.salaryProfiles[0].root; return new HttpSuccess({ template: "emp2-01", reportName: "emp2-01", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearShort: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))).slice( -2, ), agency: octSnap1.root == null ? "" : octSnap1.root, totalUser: octSnap1 == null ? "" : Extension.ToThaiNumber(octSnap1.total.toLocaleString()), totalSalary: octSnap1 == null ? "" : Extension.ToThaiNumber(octSnap1.currentAmount.toLocaleString()), sixPercent: octSnap1 == null ? "" : Extension.ToThaiNumber(octSnap1.sixPercentAmount.toLocaleString()), remainingAmountApr: // aprSnap2 == null ? "" : Extension.ToThaiNumber(aprSnap2.useAmount.toLocaleString()), //จำนวนเงินที่ใช้เลื่อนขั้นค่าจ้างไปแล้วในวันที่ 1 เม.ย. aprSnap2 == null ? "" : Extension.ToThaiNumber(octSnap2.spentAmount.toLocaleString()), remainingAmountOct: //octSnap2 == null ? "" : Extension.ToThaiNumber(octSnap2.spentAmount.toLocaleString()), //เหลือเงินใช้เลื่อนขั้นค่าจ้างในวันที่ 1 ต.ค. octSnap2 == null ? "" : Extension.ToThaiNumber( (octSnap2.sixPercentAmount - octSnap2.spentAmount).toLocaleString(), ), totalOld: aprSnap2 == null ? "" : Extension.ToThaiNumber(aprSnap2.total.toLocaleString()), //จำนวน(คน)(โควตาเลื่อนขั้นค่าจ้าง) fifteenPercentOld: aprSnap2 == null ? "" : Extension.ToThaiNumber(aprSnap2.fifteenPercent.toLocaleString()), totalUseOld: aprSnap2 == null ? "" : Extension.ToThaiNumber(aprSnap2.quantityUsed.toLocaleString()), //พิจารณาให้(คน)(โควตาเลื่อนขั้นค่าจ้าง) full2: totalEmp2step == null ? "" : Extension.ToThaiNumber(totalEmp2step.toLocaleString()), //เลื่อนขั้นค่าจ้างรวมทั้งปีสองขั้นจำนวน(คน) fullHaft: fullHaftCount == null ? "" : Extension.ToThaiNumber(fullHaftCount.toLocaleString()), //จำนวน(คน)(หนึ่งขั้นครึ่ง) fullHaftSalary: fullHaftTotalAmount == null ? "" : Extension.ToThaiNumber(fullHaftTotalAmount.toLocaleString()), //ใช้เงิน(หนึ่งขั้นครึ่ง) full: fullCount == null ? "" : Extension.ToThaiNumber(fullCount.toLocaleString()), //จำนวน(คน)(หนึ่งขั้น) fullSalary: fullTotalAmount == null ? "" : Extension.ToThaiNumber(fullTotalAmount.toLocaleString()), //ใช้เงิน(หนึ่งขั้น) haft: haftCount == null ? "" : Extension.ToThaiNumber(haftCount.toLocaleString()), //จำนวน(คน)(ครึ่งขั้น) haftSalary: haftTotalAmount == null ? "" : Extension.ToThaiNumber(haftTotalAmount.toLocaleString()), //ใช้เงิน(ครึ่งขั้น) notPromoted: noneCount == null ? "" : Extension.ToThaiNumber(noneCount.toLocaleString()), //ไม่ได้เลื่อนขั้นค่าจ้างจำนวน(คน) total: octSnap2 == null ? "" : Extension.ToThaiNumber(octSnap2.useAmount.toLocaleString()), //รวมใช้เงิน summary: octSnap2 == null ? "" : Extension.ToThaiNumber(octSnap2.remainingAmount.toLocaleString()), //เหลือเงิน }, }); } /** * API 02-รายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ครองตำแหน่ง * * @summary 02-รายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ครองตำแหน่ง * */ @Get("emp2-02/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_2(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryPeriodAPR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod?.year, }, }); if (!salaryPeriodAPR) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryPeriodAPRProfile = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodAPR?.id, }, }, }); const octPreviousYear = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod?.year - 1, }, }); const octPreviousYear2 = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod?.year - 2, }, }); let octPreviousYearProfile: SalaryProfileEmployee[] = []; if (octPreviousYear) { octPreviousYearProfile = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: octPreviousYear?.id, }, }, }); } let octPreviousYearProfile2: SalaryProfileEmployee[] = []; if (octPreviousYear2) { octPreviousYearProfile2 = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { salaryOrg: { snapshot: "SNAP2", salaryPeriodId: octPreviousYear2?.id, rootId: rootId, }, }, }); } const _salaryPeriod = await this.salaryProfileEmployeeRepository.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 _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // const agency = _salaryPeriod[0] == null ? "" : _salaryPeriod[0].root; const formattedData = _salaryPeriod.map((profile: any, index: number) => { if (!profile) { return null; } const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, yearOld2: octPreviousYear2 == null ? null : Extension.ToThaiNumber(octPreviousYear2.year.toString()), typeOld2: octPreviousYear2 && octPreviousYearProfile2.length > 0 ? (() => { const _profile = octPreviousYearProfile2.filter( (profileOCT2) => profileOCT2.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, yearOld: octPreviousYear == null ? null : Extension.ToThaiNumber(octPreviousYear.year.toString()), typeOld1: octPreviousYear && octPreviousYearProfile.length > 0 ? (() => { const _profile = octPreviousYearProfile.filter( (profileOCT) => profileOCT.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, typeOld: salaryPeriodAPRProfile.length > 0 ? (() => { const _profile = salaryPeriodAPRProfile .filter((profileAPR) => profileAPR.citizenId === profile.citizenId) .map((profile) => ({ type: profile.type, })); return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; })() : null, //เมษา ปีเดียวกัน type: profile.type === "HAFT" ? "๐.๕ ขั้น" : profile.type === "FULL" ? "๑ ขั้น" : profile.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ", //หน่วยงานพิจารณาเลื่อนขั้นค่าจ้าง 1 ต.ค. (จำนวนขั้น) }; }); return new HttpSuccess({ template: "emp2-02", reportName: "emp2-02", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearOld: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year - 1))), yearOld2: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year - 2))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 03-รายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ได้รับการเสนอขอเลื่อนขั้นค่าจ้างรวมทั้งปีสองขั้น * * @summary 03-รายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ได้รับการเสนอขอเลื่อนขั้นค่าจ้างรวมทั้งปีสองขั้น * */ @Get("emp2-03/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_3(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const fifteenPoint = await this.salaryOrgEmployeeRepository.findOne({ where: { salaryPeriodId: salaryPeriodId, rootId: rootId, snapshot: "SNAP2", }, }); const fifteenPercentData = fifteenPoint?.fifteenPercent == undefined || fifteenPoint?.fifteenPercent == null ? "๐" : Extension.ToThaiNumber(String(fifteenPoint?.fifteenPercent)); const fifteenPointData = fifteenPoint?.fifteenPoint == undefined || fifteenPoint?.fifteenPoint == null ? ".๐๐" : "." + Extension.ToThaiNumber(String(fifteenPoint?.fifteenPoint)); const _salaryProfileEmployee = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmployee) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const aprSalaryPeriodCurrent = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod.year, isActive: true, }, }); const octPreviousYear = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod?.year - 1, isActive: true, }, }); const aprPreviousYear2 = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriod?.year - 1, isActive: true, }, }); let aprPreviousYearProfileCurrent: SalaryProfileEmployee[] = []; if (aprSalaryPeriodCurrent) { aprPreviousYearProfileCurrent = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: aprSalaryPeriodCurrent?.id, }, }, }); } let octPreviousYearProfile: SalaryProfileEmployee[] = []; if (octPreviousYear) { octPreviousYearProfile = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: octPreviousYear?.id, }, }, }); } let aprPreviousYearProfile2: SalaryProfileEmployee[] = []; if (aprPreviousYear2) { aprPreviousYearProfile2 = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", salaryPeriodId: aprPreviousYear2?.id, rootId: rootId, }, }, }); } // const agency = _salaryProfileEmployee[0] == null ? "" : _salaryProfileEmployee[0].root; const formattedData = _salaryProfileEmployee.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: Extension.ToThaiNumber(profile.posLevel.toLocaleString()), posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, //เมษา ปีก่อนหน้า typeOld2: aprPreviousYear2 && aprPreviousYearProfile2.length > 0 ? (() => { const _profile = aprPreviousYearProfile2.filter( (profileAPR2) => profileAPR2.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, yearOld: octPreviousYear == null ? null : Extension.ToThaiNumber(octPreviousYear.year.toString()), //ตุลา ปีก่อนหน้า typeOld1: octPreviousYear && octPreviousYearProfile.length > 0 ? (() => { const _profile = octPreviousYearProfile.filter( (profileOCT) => profileOCT.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, typeOld: aprPreviousYearProfileCurrent.length > 0 ? (() => { const _profile = aprPreviousYearProfileCurrent .filter((profileAPR) => profileAPR.citizenId === profile.citizenId) .map((profile) => ({ type: profile.type, })); return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; })() : null, //เมษา type: profile.type === "HAFT" ? "๐.๕ ขั้น" : profile.type === "FULL" ? "๑ ขั้น" : profile.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ", score1: profile.result, score2: null, }; }); return new HttpSuccess({ template: "emp2-03", reportName: "emp2-03", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearOld: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year - 1))), yearShort: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))).slice( -2, ), yearShortOld: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)), ).slice(-2), fifteenPercent: fifteenPercentData + fifteenPointData, agency: fifteenPoint?.root == null ? "" : fifteenPoint?.root, data: formattedData, }, }); } /** * API 04-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้สมควรได้เลื่อนขั้นค่าจ้าง (แบบ ลจ.กทม.1) * * @summary 04-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้สมควรได้เลื่อนขั้นค่าจ้าง (แบบ ลจ.กทม.1) * */ @Get("emp2-04/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_4(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: Not("NONE"), }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, score: profile.result, reason: profile.remark, }; }); return new HttpSuccess({ template: "emp2-04", reportName: "emp2-04", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 05-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้สมควรได้รับค่าตอบแทนพิเศษ (แบบ ลจ.กทม.1/1) * * @summary 05-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้สมควรได้รับค่าตอบแทนพิเศษ (แบบ ลจ.กทม.1/1) * */ @Get("emp2-05/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_5(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { amountSpecial: Not(IsNull()), type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, amountSpecial: profile.amountSpecial ? Extension.ToThaiNumber(profile.amountSpecial.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-05", reportName: "emp2-05", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 06-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่สมควรเลื่อนขั้นค่าจ้าง (แบบ ลจ.กทม.2) * * @summary 06-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่สมควรเลื่อนขั้นค่าจ้าง (แบบ ลจ.กทม.2) * */ @Get("emp2-06/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_6(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: "NONE", }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, score: profile.result, reason: profile.remark, remark: null, }; }); return new HttpSuccess({ template: "emp2-06", reportName: "emp2-06", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 07-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่สมควรได้รับค่าตอบแทนพิเศษ (แบบ ลจ.กทม.2/1) * * @summary 07-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่สมควรได้รับค่าตอบแทนพิเศษ (แบบ ลจ.กทม.2/1) * */ @Get("emp2-07/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_7(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: "NONE", salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, score: profile.result, signature: profile.remark, }; }); return new HttpSuccess({ template: "emp2-07", reportName: "emp2-07", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 08-บัญชีแสดงวันลาในครึ่งปีที่แล้วมาของลูกจ้างประจำกรุงเทพมหานคร (แบบ ลจ.กทม.3) * * @summary 08-บัญชีแสดงวันลาในครึ่งปีที่แล้วมาของลูกจ้างประจำกรุงเทพมหานคร (แบบ ลจ.กทม.3) * */ @Get("emp2-08/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_8(@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 _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), 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(String(Extension.ToThaiYear(salaryPeriod.year))), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 09-รายชื่อลูกจ้างประจำกรุงเทพมหานครที่ครบเกษียณอายุราชการ * * @summary 09-รายชื่อลูกจ้างประจำกรุงเทพมหานครที่ครบเกษียณอายุราชการ * */ @Get("emp2-09/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_9(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryPeriodTarget = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isRetired: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryPeriodTarget) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const octPreviousYear = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod?.year - 1, }, }); const octPreviousYear2 = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriod?.year - 2, }, }); let octPreviousYearProfile: SalaryProfileEmployee[] = []; if (octPreviousYear) { octPreviousYearProfile = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { isRetired: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: octPreviousYear?.id, }, }, }); } let octPreviousYearProfile2: SalaryProfileEmployee[] = []; if (octPreviousYear2) { octPreviousYearProfile2 = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg"], where: { isRetired: true, salaryOrg: { snapshot: "SNAP2", salaryPeriodId: octPreviousYear2?.id, rootId: rootId, }, }, }); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // const agency = _salaryPeriodTarget[0] == null ? "" : _salaryPeriodTarget[0].root; const formattedData = _salaryPeriodTarget.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, typeOld2: octPreviousYear2 && octPreviousYearProfile2.length > 0 ? (() => { const _profile = octPreviousYearProfile2.filter( (profileOCT2) => profileOCT2.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, yearOld: octPreviousYear == null ? null : Extension.ToThaiNumber(octPreviousYear.year.toString()), typeOld1: octPreviousYear && octPreviousYearProfile.length > 0 ? (() => { const _profile = octPreviousYearProfile.filter( (profileOCT) => profileOCT.citizenId === profile.citizenId, ); if (_profile.length > 0) { return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; } return null; })() : null, typeOld: _salaryPeriodTarget.length > 0 ? (() => { const _profile = _salaryPeriodTarget .filter((profileAPR) => profileAPR.citizenId === profile.citizenId) .map((profile) => ({ type: profile.type, })); return _profile[0]?.type === "HAFT" ? "๐.๕ ขั้น" : _profile[0]?.type === "FULL" ? "๑ ขั้น" : profile?.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ"; })() : null, //เมษา ปีเดียวกัน type: profile.type === "HAFT" ? "๐.๕ ขั้น" : profile.type === "FULL" ? "๑ ขั้น" : profile.type === "FULLHAFT" ? "๑.๕ ขั้น" : "ไม่ได้เลื่อนขั้นฯ", score1: profile.result, score2: null, reason: profile.remark, }; }); return new HttpSuccess({ template: "emp2-09", reportName: "emp2-09", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), yearShort: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))).slice( -2, ), yearShortOld: Extension.ToThaiNumber( String(Extension.ToThaiYear(salaryPeriod.year - 1)), ).slice(-2), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 10-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง/ค่าตอบแทนพิเศษ * * @summary 10-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง/ค่าตอบแทนพิเศษ * */ @Get("emp2-10/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_10(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: "NONE", }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const _root = await this.salaryOrgEmployeeRepository.findOne({ where: { rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); // const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reason1: null, //เหตุผลที่ไม่ได้เลื่อนขั้น reason2: null, //เหตุผลที่ไม่ได้เลื่อนขั้น reason3: null, //เหตุผลที่ไม่ได้เลื่อนขั้น score: profile.result, reason: profile.remark, }; }); const year = Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))); const yearOld = Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year - 1))); return new HttpSuccess({ template: "emp2-10", reportName: "emp2-10", data: { year: year, yearSlice: year.slice(-2), yearOldSlice: yearOld.slice(-2), agency: _root?.root == null ? "" : _root?.root, data: formattedData, }, }); } /** * API 11-รายชื่อลูกจ้างประจำผู้มีผลการประเมินประสิทธิภาพและประสิทธิผลการปฏิบัติงานอยู่ในระดับดีเด่น * * @summary 11-รายชื่อลูกจ้างประจำผู้มีผลการประเมินประสิทธิภาพและประสิทธิผลการปฏิบัติงานอยู่ในระดับดีเด่น * */ @Get("emp2-11/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_11(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: Not("NONE"), salaryOrg: { snapshot: "SNAP2", 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, }; }); return new HttpSuccess({ template: "emp2-11", reportName: "emp2-11", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 12-คำสั่งเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับที่เกษียณอายุราชการ * * @summary 12-คำสั่งเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับที่เกษียณอายุราชการ * */ @Get("emp2-12/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_12(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrg = await this.salaryOrgEmployeeRepository.findOne({ where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!salaryOrg) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess({ template: "emp2-12", reportName: "emp2-12", }); } /** * API 13-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ ที่เกษียณอายุราชการ * * @summary 13-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ ที่เกษียณอายุราชการ * */ @Get("emp2-13/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_13(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isRetired: true, isNext: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!salaryProfile) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = salaryProfile[0] == null ? "" : salaryProfile[0].root; const formattedData = salaryProfile.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-13", reportName: "emp2-13", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 14-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้างที่เกษียณอายุราชการ * * @summary 14-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้างที่เกษียณอายุราชการ * */ @Get("emp2-14/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_14(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: "NONE", isRetired: true, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-14", reportName: "emp2-14", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 15-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับค่าตอบแทนพิเศษที่เกษียณอายุราชการ * * @summary 15-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับค่าตอบแทนพิเศษที่เกษียณอายุราชการ * */ @Get("emp2-15/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_15(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isRetired: true, isNext: false, salaryOrg: { snapshot: "SNAP2", 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-15", reportName: "emp2-15", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 16-คำสั่งเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ * * @summary 16-คำสั่งเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ * */ @Get("emp2-16/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_16(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrg = await this.salaryOrgEmployeeRepository.findOne({ where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!salaryOrg) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess({ template: "emp2-16", reportName: "emp2-16", }); } /** * API 17-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ (แนบท้ายคำสั่ง) * * @summary 17-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ (แนบท้ายคำสั่ง) * */ @Get("emp2-17/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_17(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { isNext: true, salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!salaryProfile) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = salaryProfile[0] == null ? "" : salaryProfile[0].root; const formattedData = salaryProfile.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-17", reportName: "emp2-17", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 18-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง * * @summary 18-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับการเลื่อนขั้นค่าจ้าง * */ @Get("emp2-18/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_18(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, type: "NONE", isRetired: false, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-18", reportName: "emp2-18", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 20-บัญชีรายละเอียดให้ลูกจ้างประจำกรุงเทพมหานครได้รับค่าตอบแทนพิเศษ (แนบท้ายคำสั่ง) * * @summary 20-บัญชีรายละเอียดให้ลูกจ้างประจำกรุงเทพมหานครได้รับค่าตอบแทนพิเศษ (แนบท้ายคำสั่ง) * */ @Get("emp2-20/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_20(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const _salaryProfileEmp = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!_salaryProfileEmp) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = _salaryProfileEmp[0] == null ? "" : _salaryProfileEmp[0].root; const formattedData = _salaryProfileEmp.map((profile, index) => { const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position + "/" + (profile.child4 == undefined && profile.child4 == null ? "" : profile.child4 + "/") + (profile.child3 == undefined && profile.child3 == null ? "" : profile.child3 + "/") + (profile.child2 == undefined && profile.child2 == null ? "" : profile.child2 + "/") + (profile.child1 == undefined && profile.child1 == null ? "" : profile.child1 + "/") + (profile.root == undefined && profile.root == null ? "" : profile.root), posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, precentTwo: profile.positionSalaryAmount == 0.02 ? Extension.ToThaiNumber(profile.amountSpecial.toLocaleString()) : null, //ร้อยละ 2 precentFour: profile.positionSalaryAmount == 0.04 ? Extension.ToThaiNumber(profile.amountSpecial.toLocaleString()) : null, //ร้อยละ 4 precentSix: profile.positionSalaryAmount == 0.06 ? Extension.ToThaiNumber(profile.amountSpecial.toLocaleString()) : null, //ร้อยละ 6 reason: null, }; }); return new HttpSuccess({ template: "emp2-20", reportName: "emp2-20", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 21-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับค่าตอบแทนพิเศษ * * @summary 21-บัญชีรายชื่อลูกจ้างประจำกรุงเทพมหานครผู้ไม่ได้รับค่าตอบแทนพิเศษ * */ @Get("emp2-21/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_21(@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.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { type: "NONE", salaryOrg: { snapshot: "SNAP2", 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, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-21", reportName: "emp2-21", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 22-คำสั่งแก้ไขคำสั่งเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร (เฉพาะราย) * * @summary 22-คำสั่งแก้ไขคำสั่งเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร (เฉพาะราย) * */ @Get("emp2-22/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_22(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrg = await this.salaryOrgEmployeeRepository.findOne({ where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!salaryOrg) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess({ template: "emp2-22", reportName: "emp2-22", }); } /** * API 23-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ (แนบท้ายคำสั่ง) * * @summary 23-บัญชีรายละเอียดแสดงการเลื่อนขั้นค่าจ้างและให้ลูกจ้างประจำกรุงเทพมหานครได้รับอัตราค่าจ้างสูงกว่าอัตราค่าจ้างขั้นสูงของตำแหน่งที่ได้รับแต่งตั้งในแต่ละระดับ (แนบท้ายคำสั่ง) * */ @Get("emp2-23/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_23(@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, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), 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(String(Extension.ToThaiYear(salaryPeriod.year))), agency: agency, data: formattedData, }, }); } /** * API 24-คำสั่งยกเลิกคำสั่งเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร (เฉพาะราย) * * @summary 24-คำสั่งยกเลิกคำสั่งเลื่อนขั้นค่าจ้างลูกจ้างประจำกรุงเทพมหานคร (เฉพาะราย) * */ @Get("emp2-24/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_24(@Path() rootId: string, @Path() salaryPeriodId: string) { const salaryPeriod = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, period: "OCT", isActive: true, }, }); if (!salaryPeriod) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrg = await this.salaryOrgEmployeeRepository.findOne({ where: { snapshot: "SNAP2", rootId: rootId, salaryPeriodId: salaryPeriodId, }, }); if (!salaryOrg) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } return new HttpSuccess({ template: "blank", reportName: "emp2-24", }); } /** * API 25-แบบฟอร์มบัญชีถือจ่ายอัตราค่าจ้างลูกจ้างประจำกรุงเทพมหานคร * * @summary 25-แบบฟอร์มบัญชีถือจ่ายอัตราค่าจ้างลูกจ้างประจำกรุงเทพมหานคร * */ @Get("emp2-25/{rootId}/{salaryPeriodId}") async SalaryReportEmp2_25(@Path() rootId: string, @Path() salaryPeriodId: string) { //งวดปีปัจจุบัน const salaryPeriodOCT = await this.salaryPeriodRepository.findOne({ where: { id: salaryPeriodId, }, }); if (!salaryPeriodOCT) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryPeriodAPR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriodOCT.year, }, }); if (!salaryPeriodAPR) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } let perviousYearAPR: any; let perviousYearOCT: any; let salaryProfilePerviousAPR: any; let salaryProfilePerviousOCT: any; //งวดปีก่อนหน้า perviousYearAPR = await this.salaryPeriodRepository.findOne({ where: { period: "APR", year: salaryPeriodOCT.year - 1, }, }); perviousYearOCT = await this.salaryPeriodRepository.findOne({ where: { period: "OCT", year: salaryPeriodOCT.year - 1, }, }); //ปีก่อนหน้า if (perviousYearAPR) { salaryProfilePerviousAPR = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", salaryPeriodId: perviousYearAPR.id, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); } if (perviousYearOCT) { salaryProfilePerviousOCT = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", salaryPeriodId: perviousYearOCT.id, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); } //ปีปัจุบัน const salaryProfileCurrentAPR = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!salaryProfileCurrentAPR) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const salaryProfileCurrentOCT = await this.salaryProfileEmployeeRepository.find({ relations: ["salaryOrg", "salaryOrg.salaryPeriod"], where: { salaryOrg: { snapshot: "SNAP2", salaryPeriodId: salaryPeriodId, }, }, order: { orgShortName: "ASC", posMasterNo: "ASC", }, }); if (!salaryProfileCurrentOCT) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); } const agency = salaryProfileCurrentOCT[0] == null ? "" : salaryProfileCurrentOCT[0].root; const formattedData = salaryProfileCurrentOCT.map((profile, index) => { //งวดปีก่อนหน้า let matchedAPRProfileOld: SalaryProfile | null = null; let matchedOCTProfileOld: SalaryProfile | null = null; if (salaryProfilePerviousAPR && salaryProfilePerviousAPR.length > 0) { matchedAPRProfileOld = salaryProfilePerviousAPR.find( (aprProfile_old: SalaryProfile) => aprProfile_old.citizenId === profile.citizenId, ); } if (salaryProfilePerviousOCT && salaryProfilePerviousOCT.length > 0) { matchedOCTProfileOld = salaryProfilePerviousOCT.find( (octProfile_old: SalaryProfile) => octProfile_old.citizenId === profile.citizenId, ); } const amountUseAPR_Old = matchedAPRProfileOld ? matchedAPRProfileOld.amountUse : 0; const amountUseOCT_Old = matchedOCTProfileOld ? matchedOCTProfileOld.amountUse : 0; const amountUseOld = amountUseAPR_Old + amountUseOCT_Old; //งวดปีปัจจุบัน const matchedAPRProfile = salaryProfileCurrentAPR.find( (aprProfile) => aprProfile.citizenId === profile.citizenId, ); const matchedOCTProfile = salaryProfileCurrentOCT.find( (octProfile) => octProfile.citizenId === profile.citizenId, ); const amountUseAPR = matchedAPRProfile ? matchedAPRProfile.amountUse : 0; const amountUseOCT = matchedOCTProfile ? matchedOCTProfile.amountUse : 0; const amountUse = amountUseAPR + amountUseOCT; const fullNameParts = [ profile.child4, profile.child3, profile.child2, profile.child1, profile.root, ]; const affiliation = fullNameParts .filter((part) => part !== undefined && part !== null) .join("/"); const fullName = `${profile.prefix}${profile.firstName} ${profile.lastName}`; return { no: Extension.ToThaiNumber((index + 1).toLocaleString()), fullName: fullName, affiliation: affiliation, position: profile.position, posLevel: profile.posLevel ? Extension.ToThaiNumber(profile.posLevel.toLocaleString()) : null, posNumber: Extension.ToThaiNumber(profile.orgShortName) + Extension.ToThaiNumber(profile.posMasterNo.toLocaleString()), amount: profile.amount ? Extension.ToThaiNumber(profile.amount.toLocaleString()) : null, positionSalaryAmount: profile.positionSalaryAmount ? Extension.ToThaiNumber(profile.positionSalaryAmount.toLocaleString()) : null, amountUseOld: amountUseOld ? Extension.ToThaiNumber(amountUseOld.toLocaleString()) : null, amountUse: amountUse ? Extension.ToThaiNumber(amountUse.toLocaleString()) : null, reason: null, }; }); return new HttpSuccess({ template: "emp2-25", reportName: "emp2-25", data: { year: Extension.ToThaiNumber(String(Extension.ToThaiYear(salaryPeriodOCT.year))), agency: agency, data: formattedData, }, }); } /** * API ออกคำสั่ง 33 * * @summary ออกคำสั่ง 33 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/33/resume") async SalaryReport33Resume( @Body() body: { result: { id: string; refCommandNo: string; templateDoc: string }[] }, @Request() request: RequestWithUser, ) { await Promise.all( body.result.map(async (v) => { const salary = await this.salaryProfileRepository.findOne({ where: { id: v.id, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile/salary", { profileId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionLine: null, positionPathSide: null, positionExecutive: salary.posExecutive, positionType: salary.posType, positionLevel: salary.posLevel, refCommandNo: v.refCommandNo, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง 34 * * @summary ออกคำสั่ง 34 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/34/resume") async SalaryReport34Resume( @Body() body: { result: { id: string; refCommandNo: string; templateDoc: string }[] }, @Request() request: RequestWithUser, ) { await Promise.all( body.result.map(async (v) => { const salary = await this.salaryProfileRepository.findOne({ where: { id: v.id, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile/salary", { profileId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionLine: null, positionPathSide: null, positionExecutive: salary.posExecutive, positionType: salary.posType, positionLevel: salary.posLevel, refCommandNo: v.refCommandNo, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง 35 * * @summary ออกคำสั่ง 35 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/35/resume") async SalaryReport35Resume( @Body() body: { result: { id: string; refCommandNo: string; templateDoc: string }[] }, @Request() request: RequestWithUser, ) { await Promise.all( body.result.map(async (v) => { const salary = await this.salaryProfileRepository.findOne({ where: { id: v.id, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile/salary", { profileId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionLine: null, positionPathSide: null, positionExecutive: salary.posExecutive, positionType: salary.posType, positionLevel: salary.posLevel, refCommandNo: v.refCommandNo, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง 36 * * @summary ออกคำสั่ง 36 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/36/resume") async SalaryReport36Resume( @Body() body: { result: { id: string; refCommandNo: string; templateDoc: string }[] }, @Request() request: RequestWithUser, ) { await Promise.all( body.result.map(async (v) => { const salary = await this.salaryProfileEmployeeRepository.findOne({ where: { id: v.id, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile-employee/salary", { profileEmployeeId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, // positionLine: null, // positionPathSide: null, // positionExecutive: null, positionType: salary.posType, positionLevel: salary.posLevel ? String(salary.posLevel) : null, refCommandNo: v.refCommandNo, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileEmployeeRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง 37 * * @summary ออกคำสั่ง 37 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/37/resume") async SalaryReport37Resume( @Body() body: { result: { id: string; refCommandNo: string; templateDoc: string }[] }, @Request() request: RequestWithUser, ) { await Promise.all( body.result.map(async (v) => { const salary = await this.salaryProfileEmployeeRepository.findOne({ where: { id: v.id, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile-employee/salary", { profileEmployeeId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionLine: null, positionPathSide: null, positionExecutive: null, positionType: salary.posType, positionLevel: salary.posLevel, refCommandNo: v.refCommandNo, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileEmployeeRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง 33 * * @summary ออกคำสั่ง 33 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("command/33/{id}") async SalaryReport33(@Path() id: string) { const salary = await this.salaryPeriodRepository.findOne({ where: { id: id }, }); if (!salary) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrgs = await this.salaryOrgRepository.find({ where: { salaryPeriodId: salary.id, snapshot: "SNAP2" }, }); const salaryRank = await this.salaryProfileRepository.find({ where: { salaryOrgId: In(salaryOrgs.map((x) => x.id)), type: In(["FULLHAFT", "FULL", "HAFT"]), status: "PENDING", }, }); const _salaryRank = salaryRank.map((item) => ({ id: item.id, citizenId: item.citizenId, prefix: item.prefix, firstName: item.firstName, lastName: item.lastName, profileId: item.profileId, })); return new HttpSuccess(_salaryRank); } /** * API ออกคำสั่ง 34 * * @summary ออกคำสั่ง 34 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("command/34/{id}") async SalaryReport34(@Path() id: string) { const salary = await this.salaryPeriodRepository.findOne({ where: { id: id }, }); if (!salary) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrgs = await this.salaryOrgRepository.find({ where: { salaryPeriodId: salary.id, snapshot: "SNAP2" }, }); const salaryRank = await this.salaryProfileRepository.find({ where: [ { salaryOrgId: In(salaryOrgs.map((x) => x.id)), amountSpecial: MoreThan(0), status: "PENDING", }, { salaryOrgId: In(salaryOrgs.map((x) => x.id)), type: "NONE", status: "PENDING", }, ], }); const _salaryRank = salaryRank.map((item) => ({ id: item.id, citizenId: item.citizenId, prefix: item.prefix, firstName: item.firstName, lastName: item.lastName, profileId: item.profileId, })); return new HttpSuccess(_salaryRank); } /** * API ออกคำสั่ง 35 * * @summary ออกคำสั่ง 35 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("command/35/{id}") async SalaryReport35(@Path() id: string) { const salary = await this.salaryPeriodRepository.findOne({ where: { id: id }, }); if (!salary) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrgs = await this.salaryOrgRepository.find({ where: { salaryPeriodId: salary.id, snapshot: "SNAP2" }, }); const salaryRank = await this.salaryProfileRepository.find({ where: { salaryOrgId: In(salaryOrgs.map((x) => x.id)), type: In(["FULLHAFT", "FULL", "HAFT"]), status: "PENDING", isRetired: true, }, }); const _salaryRank = salaryRank.map((item) => ({ id: item.id, citizenId: item.citizenId, prefix: item.prefix, firstName: item.firstName, lastName: item.lastName, profileId: item.profileId, })); return new HttpSuccess(_salaryRank); } /** * API ออกคำสั่ง 36 * * @summary ออกคำสั่ง 36 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("command/36/{id}") async SalaryReport36(@Path() id: string) { const salary = await this.salaryPeriodRepository.findOne({ where: { id: id }, }); if (!salary) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrgs = await this.salaryOrgEmployeeRepository.find({ where: { salaryPeriodId: salary.id, snapshot: "SNAP2" }, }); const salaryRank = await this.salaryProfileEmployeeRepository.find({ where: { salaryOrgId: In(salaryOrgs.map((x) => x.id)), type: In(["FULLHAFT", "FULL", "HAFT"]), status: "PENDING", }, }); const _salaryRank = salaryRank.map((item) => ({ id: item.id, citizenId: item.citizenId, prefix: item.prefix, firstName: item.firstName, lastName: item.lastName, profileId: item.profileId, })); return new HttpSuccess(_salaryRank); } /** * API ออกคำสั่ง 37 * * @summary ออกคำสั่ง 37 * * @param {string} id Guid, *Id ผังเงินเดือน */ @Get("command/37/{id}") async SalaryReport37(@Path() id: string) { const salary = await this.salaryPeriodRepository.findOne({ where: { id: id }, }); if (!salary) { throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลการขึ้นเงินเดือน"); } const salaryOrgs = await this.salaryOrgEmployeeRepository.find({ where: { salaryPeriodId: salary.id, snapshot: "SNAP2" }, }); const salaryRank = await this.salaryProfileEmployeeRepository.find({ where: { salaryOrgId: In(salaryOrgs.map((x) => x.id)), amountSpecial: MoreThan(0), status: "PENDING", }, }); const _salaryRank = salaryRank.map((item) => ({ id: item.id, citizenId: item.citizenId, prefix: item.prefix, firstName: item.firstName, lastName: item.lastName, profileId: item.profileId, })); return new HttpSuccess(_salaryRank); } /** * API ออกคำสั่ง * * @summary ออกคำสั่ง * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/officer/report/excecute") async SalaryReportExcecute( @Body() body: { refIds: { refId: string; commandAffectDate: Date | null; commandNo: string | null; commandId?: string | null; commandYear: number; templateDoc: string | null; amount: Double | null; positionSalaryAmount: Double | null; mouthSalaryAmount: Double | null; }[]; }, @Request() request: RequestWithUser, ) { await Promise.all( body.refIds.map(async (v) => { const salary = await this.salaryProfileRepository.findOne({ where: { id: v.refId, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile/salary", { profileId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, commandId: v.commandId, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionLine: null, positionPathSide: null, positionExecutive: salary.posExecutive, positionType: salary.posType, positionLevel: salary.posLevel, refCommandNo: `${v.commandNo}/${Extension.ToThaiYear(v.commandYear)}`, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง * * @summary ออกคำสั่ง * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/employee/report/excecute") async SalaryEmployeeReportExcecute( @Body() body: { refIds: { refId: string; commandAffectDate: Date | null; commandNo: string | null; commandId: string | null; commandYear: number; templateDoc: string | null; amount: Double | null; positionSalaryAmount: Double | null; mouthSalaryAmount: Double | null; }[]; }, @Request() request: RequestWithUser, ) { await Promise.all( body.refIds.map(async (v) => { const salary = await this.salaryProfileEmployeeRepository.findOne({ where: { id: v.refId, }, }); if (salary != null) { await new CallAPI() .PostData(request, "/org/profile-employee/salary", { profileEmployeeId: salary.profileId, date: new Date(), amount: salary.positionSalaryAmount, commandId: v.commandId, positionSalaryAmount: salary.amountSpecial, mouthSalaryAmount: null, posNo: salary.orgShortName + salary.posMasterNo, position: salary.position, positionType: salary.posType, positionLevel: salary.posLevel ? String(salary.posLevel) : null, refCommandNo: `${v.commandNo}/${Extension.ToThaiYear(v.commandYear)}`, templateDoc: v.templateDoc, }) .then(async () => { const before = null; salary.status = "DONE"; salary.lastUpdateUserId = request.user.sub; salary.lastUpdateFullName = request.user.name; salary.lastUpdatedAt = new Date(); await this.salaryProfileEmployeeRepository.save(salary, { data: request }); setLogDataDiff(request, { before, after: salary }); }); } }), ); return new HttpSuccess(); } /** * API ออกคำสั่ง * * @summary ออกคำสั่ง * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/officer/report") async SalaryOfficerReportCommand( @Body() body: { refIds: string[]; }, @Request() request: RequestWithUser, ) { return new HttpSuccess(); } /** * API ออกคำสั่ง * * @summary ออกคำสั่ง * * @param {string} id Guid, *Id ผังเงินเดือน */ @Post("command/employee/report") async SalaryEmployeeReportCommand( @Body() body: { refIds: string[]; }, @Request() request: RequestWithUser, ) { return new HttpSuccess(); } }