2024-01-25 11:09:54 +07:00
|
|
|
import { AppDataSource } from "../database/data-source";
|
2024-01-25 13:08:25 +07:00
|
|
|
import { OrgChild1, CreateOrgChild1, UpdateOrgChild1 } from "../entities/OrgChild1";
|
2024-01-25 11:09:54 +07:00
|
|
|
import {
|
|
|
|
|
Body,
|
|
|
|
|
Delete,
|
|
|
|
|
Get,
|
|
|
|
|
Path,
|
|
|
|
|
Post,
|
|
|
|
|
Put,
|
|
|
|
|
Response,
|
|
|
|
|
Route,
|
|
|
|
|
SuccessResponse,
|
|
|
|
|
Tags,
|
|
|
|
|
Query,
|
|
|
|
|
Request,
|
|
|
|
|
Security,
|
|
|
|
|
} from "tsoa";
|
|
|
|
|
import HttpStatusCode from "../interfaces/http-status";
|
|
|
|
|
import HttpSuccess from "../interfaces/http-success";
|
|
|
|
|
import HttpError from "../interfaces/http-error";
|
|
|
|
|
@Route("api/v1/organization/child1")
|
|
|
|
|
@Tags("OrgChild1")
|
|
|
|
|
@Security("bearerAuth")
|
|
|
|
|
@Response(
|
|
|
|
|
HttpStatusCode.INTERNAL_SERVER_ERROR,
|
|
|
|
|
"เกิดข้อผิดพลาด ไม่สามารถแสดงรายการได้ กรุณาลองใหม่ในภายหลัง",
|
|
|
|
|
)
|
|
|
|
|
@SuccessResponse(HttpStatusCode.OK, "สำเร็จ")
|
|
|
|
|
|
|
|
|
|
export class OrgChild1Controller {
|
|
|
|
|
private child1Repository = AppDataSource.getRepository(OrgChild1)
|
2024-01-25 13:08:25 +07:00
|
|
|
|
|
|
|
|
/**
|
2024-01-25 11:09:54 +07:00
|
|
|
* API สร้างโครงสร้างระดับ1
|
|
|
|
|
*
|
2024-01-25 13:08:25 +07:00
|
|
|
* @summary ORG_004 - สร้างโครงสร้างระดับ1 (ADMIN) #4
|
2024-01-25 11:09:54 +07:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
@Post()
|
|
|
|
|
async save(
|
|
|
|
|
@Body() requestBody: CreateOrgChild1,
|
|
|
|
|
@Request() request: { user: Record<string, any> },
|
|
|
|
|
){
|
2024-01-25 13:08:25 +07:00
|
|
|
try {
|
|
|
|
|
const chkOrder = await this.child1Repository.findOne({ where: { orgRootId:requestBody.orgRootId, orgChild1Order:requestBody.orgChild1Order }});
|
|
|
|
|
if (chkOrder != null) {
|
|
|
|
|
throw new HttpError(HttpStatusCode.NOT_FOUND, "ลำดับที่ของหน่วยงานนี้มีอยู่ในระบบแล้ว");
|
|
|
|
|
}
|
|
|
|
|
const chkCode = await this.child1Repository.findOne({ where: { orgRootId:requestBody.orgRootId, orgChild1Code:requestBody.orgChild1Code }});
|
|
|
|
|
if (chkCode != null) {
|
|
|
|
|
throw new HttpError(HttpStatusCode.NOT_FOUND, "รหัสหน่วยงานนี้มีอยู่ในระบบแล้ว");
|
|
|
|
|
}
|
|
|
|
|
const child1 = Object.assign(new OrgChild1(), requestBody) as OrgChild1;
|
|
|
|
|
child1.orgChild1Name = requestBody.orgChild1Name
|
|
|
|
|
child1.createdUserId = request.user.sub
|
|
|
|
|
child1.createdFullName = request.user.name
|
|
|
|
|
child1.createdAt = new Date()
|
|
|
|
|
child1.lastUpdateUserId = request.user.sub
|
|
|
|
|
child1.lastUpdateFullName= request.user.name
|
|
|
|
|
child1.lastUpdatedAt = new Date()
|
|
|
|
|
await this.child1Repository.save(child1);
|
|
|
|
|
return new HttpSuccess();
|
|
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
// return new HttpError(HttpStatusCode.INTERNAL_SERVER_ERROR, String(error))
|
|
|
|
|
return error
|
2024-01-25 11:09:54 +07:00
|
|
|
}
|
2024-01-25 13:08:25 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* API แก้ไขโครงสร้างระดับ1
|
|
|
|
|
*
|
|
|
|
|
* @summary ORG_005 - แก้ไขโครงสร้างระดับ1 (ADMIN) #5
|
|
|
|
|
*
|
|
|
|
|
* @param {string} id id สร้างโครงสร้างระดับ1
|
|
|
|
|
*/
|
|
|
|
|
@Put("{id}")
|
|
|
|
|
async Edit(
|
|
|
|
|
@Path() id: string,
|
|
|
|
|
@Body() requestBody: UpdateOrgChild1,
|
|
|
|
|
@Request() request: { user: Record<string, any> },
|
|
|
|
|
) {
|
|
|
|
|
try {
|
|
|
|
|
const child1 = await this.child1Repository.findOne({ where: { id } });
|
|
|
|
|
if (!child1) {
|
|
|
|
|
throw new HttpError(HttpStatusCode.NOT_FOUND, "not found.");
|
2024-01-25 11:09:54 +07:00
|
|
|
}
|
2024-01-25 13:08:25 +07:00
|
|
|
child1.lastUpdateUserId = request.user.sub;
|
|
|
|
|
child1.lastUpdateFullName = request.user.name;
|
|
|
|
|
child1.lastUpdatedAt = new Date();
|
|
|
|
|
this.child1Repository.merge(child1, requestBody);
|
2024-01-25 11:09:54 +07:00
|
|
|
await this.child1Repository.save(child1);
|
|
|
|
|
return new HttpSuccess();
|
2024-01-25 13:08:25 +07:00
|
|
|
} catch (error) {
|
|
|
|
|
return error
|
2024-01-25 11:09:54 +07:00
|
|
|
}
|
2024-01-25 13:08:25 +07:00
|
|
|
}
|
2024-01-25 11:09:54 +07:00
|
|
|
|
2024-01-25 13:08:25 +07:00
|
|
|
|
2024-01-25 11:09:54 +07:00
|
|
|
}
|