add api history/user

This commit is contained in:
AdisakKanthawilang 2024-05-27 15:17:27 +07:00
parent 3438b450ba
commit 7126d64d7e
6 changed files with 206 additions and 10 deletions

View file

@ -70,6 +70,37 @@ export class ProfileChangeNameController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async changeNameHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.changeNameHistoryRepository.find({
where: {
histories: {
profileId: profile.id,
},
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"status",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{changeNameId}") @Get("history/{changeNameId}")
@Example({ @Example({
status: 200, status: 200,

View file

@ -72,6 +72,37 @@ export class ProfileChangeNameEmployeeController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async changeNameHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileEmployeeRepo.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.changeNameHistoryRepository.find({
where: {
histories: {
profileEmployeeId: profile.id,
},
},
select: [
"id",
"prefix",
"firstName",
"lastName",
"status",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{changeNameId}") @Get("history/{changeNameId}")
@Example({ @Example({
status: 200, status: 200,
@ -174,13 +205,13 @@ export class ProfileChangeNameEmployeeController extends Controller {
]); ]);
const chkLastRecord = await this.changeNameRepository.findOne({ const chkLastRecord = await this.changeNameRepository.findOne({
where:{ where: {
profileEmployeeId: record.profileEmployeeId profileEmployeeId: record.profileEmployeeId,
}, },
order:{ order: {
createdAt: "DESC" createdAt: "DESC",
} },
}) });
if (!chkLastRecord) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล"); if (!chkLastRecord) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
const profile = await this.profileEmployeeRepo.findOneBy({ id: record.profileEmployeeId }); const profile = await this.profileEmployeeRepo.findOneBy({ id: record.profileEmployeeId });

View file

@ -75,6 +75,39 @@ export class ProfileDisciplineController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async disciplineHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.disciplineHistoryRepository.find({
where: {
histories: {
profileId: profile.id,
},
},
select: [
"id",
"date",
"level",
"detail",
"unStigma",
"refCommandNo",
"refCommandDate",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{disciplineId}") @Get("history/{disciplineId}")
@Example({ @Example({
status: 200, status: 200,

View file

@ -90,6 +90,39 @@ export class ProfileDisciplineEmployeeController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async disciplineHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.disciplineHistoryRepository.find({
where: {
histories: {
profileEmployeeId: profile.id,
},
},
select: [
"id",
"date",
"level",
"detail",
"unStigma",
"refCommandNo",
"refCommandDate",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{disciplineId}") @Get("history/{disciplineId}")
public async disciplineHistory(@Path() disciplineId: string) { public async disciplineHistory(@Path() disciplineId: string) {
const record = await this.disciplineHistoryRepository.find({ const record = await this.disciplineHistoryRepository.find({

View file

@ -82,6 +82,40 @@ export class ProfileDutyController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async dutyHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.dutyHistoryRepository.find({
where: {
histories: {
profileId: profile.id,
},
},
select: [
"id",
"dateStart",
"dateEnd",
"reference",
"detail",
"refCommandNo",
"refCommandDate",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{dutyId}") @Get("history/{dutyId}")
@Example({ @Example({
status: 200, status: 200,

View file

@ -22,7 +22,7 @@ import { ProfileEmployee } from "../entities/ProfileEmployee";
import { CreateProfileEmployeeDuty, ProfileDuty, UpdateProfileDuty } from "../entities/ProfileDuty"; import { CreateProfileEmployeeDuty, ProfileDuty, UpdateProfileDuty } from "../entities/ProfileDuty";
@Route("api/v1/org/profile-employee/duty") @Route("api/v1/org/profile-employee/duty")
@Tags("ProfileDuty") @Tags("ProfileEmployeeDuty")
@Security("bearerAuth") @Security("bearerAuth")
export class ProfileDutyEmployeeController extends Controller { export class ProfileDutyEmployeeController extends Controller {
private profileRepository = AppDataSource.getRepository(ProfileEmployee); private profileRepository = AppDataSource.getRepository(ProfileEmployee);
@ -67,6 +67,40 @@ export class ProfileDutyEmployeeController extends Controller {
return new HttpSuccess(lists); return new HttpSuccess(lists);
} }
/**
*
* @summary by keycloak
*
*/
@Get("history/user")
public async dutyHistoryUser(@Request() request: RequestWithUser) {
const profile = await this.profileRepository.findOneBy({ keycloak: request.user.sub });
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const record = await this.dutyHistoryRepository.find({
where: {
histories: {
profileEmployeeId: profile.id,
},
},
select: [
"id",
"dateStart",
"dateEnd",
"reference",
"detail",
"refCommandNo",
"refCommandDate",
"lastUpdateFullName",
"lastUpdatedAt",
],
order: { createdAt: "DESC" },
});
return new HttpSuccess(record);
}
@Get("history/{dutyId}") @Get("history/{dutyId}")
public async dutyHistory(@Path() dutyId: string) { public async dutyHistory(@Path() dutyId: string) {
const record = await this.dutyHistoryRepository.find({ const record = await this.dutyHistoryRepository.find({