validate ชื่อซ้ำ ใน DB และ CRUD Relationship

This commit is contained in:
AdisakKanthawilang 2024-02-02 16:03:22 +07:00
parent a7c6f80a7c
commit 2fa49ddfcc
2 changed files with 184 additions and 140 deletions

View file

@ -44,11 +44,17 @@ export class PosExecutiveController extends Controller {
requestBody: CreatePosExecutive, requestBody: CreatePosExecutive,
@Request() request: { user: Record<string, any> }, @Request() request: { user: Record<string, any> },
) { ) {
const posExecutive = Object.assign(new PosExecutive(), requestBody);
if (!posExecutive) { const checkName = await this.posExecutiveRepository.findOne({
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); where: { posExecutiveName: requestBody.posExecutiveName },
});
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
} }
try { try {
const posExecutive = Object.assign(new PosExecutive(), requestBody);
posExecutive.createdUserId = request.user.sub; posExecutive.createdUserId = request.user.sub;
posExecutive.createdFullName = request.user.name; posExecutive.createdFullName = request.user.name;
posExecutive.lastUpdateUserId = request.user.sub; posExecutive.lastUpdateUserId = request.user.sub;
@ -78,6 +84,15 @@ export class PosExecutiveController extends Controller {
if (!posExecutive) { if (!posExecutive) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลไอดีนี้ : " + id); throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลไอดีนี้ : " + id);
} }
const checkName = await this.posExecutiveRepository.findOne({
where: { posExecutiveName: requestBody.posExecutiveName },
});
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
}
try { try {
posExecutive.lastUpdateUserId = request.user.sub; posExecutive.lastUpdateUserId = request.user.sub;
posExecutive.lastUpdateFullName = request.user.name; posExecutive.lastUpdateFullName = request.user.name;

View file

@ -35,17 +35,22 @@ import {
* @summary ORG_060 - (ADMIN) #65 * @summary ORG_060 - (ADMIN) #65
* *
*/ */
@Post("relationship") @Post()
async createRelationship( async createRelationship(
@Body() @Body()
requestBody: CreateRelationship, requestBody: CreateRelationship,
@Request() request: { user: Record<string, any> }, @Request() request: { user: Record<string, any> },
) { ) {
const relationship = Object.assign(new Relationship(), requestBody); const checkName = await this.relationshipRepository.findOne({
if (!relationship) { where: { name: requestBody.name },
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล"); });
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
} }
try { try {
const relationship = Object.assign(new Relationship(), requestBody);
relationship.createdUserId = request.user.sub; relationship.createdUserId = request.user.sub;
relationship.createdFullName = request.user.name; relationship.createdFullName = request.user.name;
relationship.lastUpdateUserId = request.user.sub; relationship.lastUpdateUserId = request.user.sub;
@ -64,7 +69,7 @@ import {
* *
* @param {string} id Id * @param {string} id Id
*/ */
@Put("relationship/{id}") @Put("{id}")
async updateRelationship( async updateRelationship(
@Path() id: string, @Path() id: string,
@Body() @Body()
@ -75,6 +80,15 @@ import {
if (!relationship) { if (!relationship) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลไอดีนี้ : " + id); throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลไอดีนี้ : " + id);
} }
const checkName = await this.relationshipRepository.findOne({
where: { name: requestBody.name },
});
if (checkName) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ชื่อนี้มีอยู่ในระบบแล้ว");
}
try { try {
relationship.lastUpdateUserId = request.user.sub; relationship.lastUpdateUserId = request.user.sub;
relationship.lastUpdateFullName = request.user.name; relationship.lastUpdateFullName = request.user.name;
@ -86,56 +100,71 @@ import {
} }
} }
// /** /**
// * API ลบอัตรากำลัง * API
// * *
// * @summary ORG_043 - ลบตำแหน่งทางการบริหาร (ADMIN) #46 * @summary ORG_060 - (ADMIN) #65
// * *
// * @param {string} id Id ตำแหน่งทางการบริหาร * @param {string} id Id
// */ */
// @Delete("executive/{id}") @Delete("{id}")
// async deletePosExecutive(@Path() id: string) { async deleteRelationship(@Path() id: string) {
// const delPosExecutive = await this.posExecutiveRepository.findOne({ const delRelationship = await this.relationshipRepository.findOne({
// where: { id }, where: { id },
// }); });
// if (!delPosExecutive) { if (!delRelationship) {
// throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลตำแหน่งตามไอดีนี้ : " + id); throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลตำแหน่งตามไอดีนี้ : " + id);
// } }
// try { try {
// await this.positionRepository.delete({ posExecutiveId: id }); await this.relationshipRepository.delete({ id: id });
// await this.posExecutiveRepository.delete({ id }); return new HttpSuccess();
// return new HttpSuccess(); } catch (error) {
// } catch (error) { return error;
// return error; }
// }
// }
// /**
// * API รายละเอียดตำแหน่งทางการบริหาร
// *
// * @summary ORG_044 - รายละเอียดตำแหน่งทางการบริหาร (ADMIN) #47
// *
// * @param {string} id Id ตำแหน่งทางการบริหาร
// */
// @Get("executive/{id}")
// async detailPosExecutive(@Path() id: string) {
// const posExecutive = await this.posExecutiveRepository.findOne({
// where: { id },
// select:[
// "id",
// "posExecutiveName",
// "posExecutivePriority"
// ]
// });
// if (!posExecutive) {
// throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล");
// }
// try {
// return new HttpSuccess(posExecutive);
// } catch (error) {
// return error;
// }
// }
} }
/**
* API
*
* @summary ORG_060 - (ADMIN) #65
*
* @param {string} id Id
*/
@Get("{id}")
async detailRelationship(@Path() id: string) {
const relationship = await this.relationshipRepository.findOne({
where: { id },
select: ["id", "name"],
});
if (!relationship) {
throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูล");
}
try {
return new HttpSuccess(relationship);
} catch (error) {
return error;
}
}
/**
* API
*
* @summary ORG_060 - (ADMIN) #65
*
* @param {string} id Id
*/
@Get()
async listRelationship() {
const relationship = await this.relationshipRepository.find({
select: ["id", "name"],
});
if (!relationship) {
return new HttpSuccess([]);
}
try {
return new HttpSuccess(relationship);
} catch (error) {
return error;
}
}
}