no message

This commit is contained in:
Bright 2024-11-15 16:35:18 +07:00
parent 722dc85509
commit c7c32be069

View file

@ -4825,7 +4825,16 @@ export class ProfileController extends Controller {
async getProfileAndCommander(@Request() request: RequestWithUser, @Path() id: string) { async getProfileAndCommander(@Request() request: RequestWithUser, @Path() id: string) {
const profile = await this.profileRepo.findOne({ const profile = await this.profileRepo.findOne({
where: { keycloak: id }, where: { keycloak: id },
relations: ["posLevel", "posType", "current_holders", "current_holders.orgRoot"], relations: [
"posLevel",
"posType",
"current_holders",
"current_holders.orgRoot",
"current_holders.orgChild1",
"current_holders.orgChild2",
"current_holders.orgChild3",
"current_holders.orgChild4",
],
}); });
if (!profile) { if (!profile) {
throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลบุคคลนี้ในระบบ"); throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลบุคคลนี้ในระบบ");
@ -5539,6 +5548,10 @@ export class ProfileController extends Controller {
"posType", "posType",
"current_holders", "current_holders",
"current_holders.orgRoot", "current_holders.orgRoot",
"current_holders.orgChild1",
"current_holders.orgChild2",
"current_holders.orgChild3",
"current_holders.orgChild4",
"profileSalary", "profileSalary",
], ],
order: { order: {