no message

This commit is contained in:
Bright 2024-03-13 11:36:17 +07:00
parent a0486a10b9
commit 70481502f3
3 changed files with 21 additions and 21 deletions

View file

@ -57,7 +57,7 @@ export class EmployeePosLevelController extends Controller {
where: { id: requestBody.employeePosTypeId }
});
if (!EmpPosType) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลประเภทกลุ่มงานลูกจ้างประจำนี้");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลกลุ่มงานลูกจ้างประจำนี้");
}
const chkEmpPosLevelName = await this.employeePosLevelRepository.findOne({
@ -102,7 +102,7 @@ export class EmployeePosLevelController extends Controller {
where: { id: requestBody.employeePosTypeId }
});
if (!EmpPosType) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลประเภทกลุ่มงานลูกจ้างประจำนี้");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลกลุ่มงานลูกจ้างประจำนี้");
}
const chkEmpPosLevel = await this.employeePosLevelRepository.findOne({

View file

@ -37,9 +37,9 @@ export class EmployeePosTypeController extends Controller {
private employeePosLevelRepository = AppDataSource.getRepository(EmployeePosLevel);
/**
* API
* API
*
* @summary ORG_ - (ADMIN) #
* @summary ORG_ - (ADMIN) #
*
*/
@Post()
@ -61,7 +61,7 @@ export class EmployeePosTypeController extends Controller {
if (chkEmpPosTypeName) {
throw new HttpError(
HttpStatusCode.NOT_FOUND,
"ชื่อประเภทกลุ่มงานลูกจ้างประจำนี้มีอยู่ในระบบแล้ว",
"ชื่อกลุ่มงานลูกจ้างประจำนี้มีอยู่ในระบบแล้ว",
);
}
EmpPosType.createdUserId = request.user.sub;
@ -73,11 +73,11 @@ export class EmployeePosTypeController extends Controller {
}
/**
* API
* API
*
* @summary ORG_ - (ADMIN) #
* @summary ORG_ - (ADMIN) #
*
* @param {string} id Id
* @param {string} id Id
*/
@Put("{id}")
async EditEmpType(
@ -87,7 +87,7 @@ export class EmployeePosTypeController extends Controller {
) {
const EmpPosType = await this.employeePosTypeRepository.findOne({ where: { id } });
if (!EmpPosType) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลประเภทกลุ่มงานลูกจ้างประจำนี้");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลกลุ่มงานลูกจ้างประจำนี้");
}
const chkEmpPosType = await this.employeePosTypeRepository.findOne({
where: {
@ -98,7 +98,7 @@ export class EmployeePosTypeController extends Controller {
if (chkEmpPosType) {
throw new HttpError(
HttpStatusCode.NOT_FOUND,
"ชื่อประเภทกลุ่มงานลูกจ้างประจำนี้มีอยู่ในระบบแล้ว",
"ชื่อกลุ่มงานลูกจ้างประจำนี้มีอยู่ในระบบแล้ว",
);
}
EmpPosType.lastUpdateUserId = request.user.sub;
@ -109,17 +109,17 @@ export class EmployeePosTypeController extends Controller {
}
/**
* API
* API
*
* @summary ORG_ - (ADMIN) #
* @summary ORG_ - (ADMIN) #
*
* @param {string} id Id
* @param {string} id Id
*/
@Delete("{id}")
async deleteType(@Path() id: string) {
const delEmpPosType = await this.employeePosTypeRepository.findOne({ where: { id } });
if (!delEmpPosType) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลประเภทกลุ่มงานลูกจ้างประจำนี้");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลกลุ่มงานลูกจ้างประจำนี้");
}
//ตารางระดับชั้นงาน
const EmpPosLevel = await this.employeePosLevelRepository.find({
@ -147,11 +147,11 @@ export class EmployeePosTypeController extends Controller {
}
/**
* API
* API
*
* @summary ORG_ - (ADMIN) #
* @summary ORG_ - (ADMIN) #
*
* @param {string} id Id
* @param {string} id Id
*/
@Get("{id}")
async GetEmpTypeById(@Path() id: string) {
@ -161,7 +161,7 @@ export class EmployeePosTypeController extends Controller {
where: { id: id },
});
if (!getEmpPosType) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลประเภทกลุ่มงานลูกจ้างประจำนี้");
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลกลุ่มงานลูกจ้างประจำนี้");
}
const mapGetEmpPosType = {
@ -179,9 +179,9 @@ export class EmployeePosTypeController extends Controller {
}
/**
* API
* API
*
* @summary ORG_ - (ADMIN) #
* @summary ORG_ - (ADMIN) #
*
*/
@Get()

View file

@ -84,7 +84,7 @@
"name": "Employee", "description": "ตำแหน่งลูกจ้างประจำ"
},
{
"name": "EmployeePosType", "description": "ประเภทกลุ่มงานลูกจ้างประจำ"
"name": "EmployeePosType", "description": "กลุ่มงานลูกจ้างประจำ"
},
{
"name": "EmployeePosLevel", "description": "ระดับชั้นงานลูกจ้างประจำ"