limit commander
This commit is contained in:
parent
2cd35849b2
commit
e7dd0e64cb
1 changed files with 21 additions and 11 deletions
|
|
@ -563,17 +563,27 @@ export class ProfileController extends Controller {
|
|||
where: { keycloak: request.user.sub },
|
||||
});
|
||||
|
||||
if (!profile) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูล");
|
||||
|
||||
const _caregiver = await this.profileRepo.find({
|
||||
relations: { posLevel: true, posType: true },
|
||||
});
|
||||
const _commander = await this.profileRepo.find({
|
||||
relations: { posLevel: true, posType: true },
|
||||
});
|
||||
const _chairman = await this.profileRepo.find({
|
||||
relations: { posLevel: true, posType: true },
|
||||
});
|
||||
const _caregiver = await this.profileRepo
|
||||
.createQueryBuilder("profile")
|
||||
.leftJoinAndSelect("profile.posLevel", "posLevel")
|
||||
.leftJoinAndSelect("profile.posType", "posType")
|
||||
.skip((1 - 1) * 20)
|
||||
.take(20)
|
||||
.getMany();
|
||||
const _commander = await this.profileRepo
|
||||
.createQueryBuilder("profile")
|
||||
.leftJoinAndSelect("profile.posLevel", "posLevel")
|
||||
.leftJoinAndSelect("profile.posType", "posType")
|
||||
.skip((1 - 1) * 20)
|
||||
.take(20)
|
||||
.getMany();
|
||||
const _chairman = await this.profileRepo
|
||||
.createQueryBuilder("profile")
|
||||
.leftJoinAndSelect("profile.posLevel", "posLevel")
|
||||
.leftJoinAndSelect("profile.posType", "posType")
|
||||
.skip((1 - 1) * 20)
|
||||
.take(20)
|
||||
.getMany();
|
||||
|
||||
const caregiver = _caregiver.map((_data) => ({
|
||||
id: _data.id,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue