Merge branch 'develop' of github.com:Frappet/bma-ehr-organization into develop
This commit is contained in:
commit
baa7c09b3c
7 changed files with 557 additions and 51 deletions
|
|
@ -27,7 +27,9 @@ import { EmployeePosMaster } from "../entities/EmployeePosMaster";
|
||||||
@Security("bearerAuth")
|
@Security("bearerAuth")
|
||||||
export class AuthRoleController extends Controller {
|
export class AuthRoleController extends Controller {
|
||||||
private authRoleRepo = AppDataSource.getRepository(AuthRole);
|
private authRoleRepo = AppDataSource.getRepository(AuthRole);
|
||||||
private authRoleAttrRepo = AppDataSource.getRepository(AuthRoleAttr);
|
private authRoleAttrRepo = AppDataSource.getRepository(AuthRoleAttr);
|
||||||
|
private posMasterRepository = AppDataSource.getRepository(PosMaster);
|
||||||
|
private employeePosMasterRepository = AppDataSource.getRepository(EmployeePosMaster)
|
||||||
|
|
||||||
@Get("list")
|
@Get("list")
|
||||||
public async listAuthRole() {
|
public async listAuthRole() {
|
||||||
|
|
@ -74,9 +76,33 @@ export class AuthRoleController extends Controller {
|
||||||
return new HttpSuccess(data.id);
|
return new HttpSuccess(data.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Post("assign")
|
@Post("govoment")
|
||||||
public async AddAuthRole(@Request() req: RequestWithUser, @Body() body: CreateAddAuthRole) {
|
public async AddAuthRoleGovoment(@Request() req: RequestWithUser, @Body() body: CreateAddAuthRole) {
|
||||||
// console pasMater = await this
|
const getDetail = await this.authRoleRepo.findOneBy({ id: body.authRoleId });
|
||||||
|
if (!getDetail) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลสิทธิ์");
|
||||||
|
|
||||||
|
const posMaster = await this.posMasterRepository.findOneBy({ id : body.posMasterId })
|
||||||
|
if (!posMaster) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลตำแหน่ง");
|
||||||
|
|
||||||
|
posMaster.lastUpdateUserId = req.user.sub;
|
||||||
|
posMaster.lastUpdateFullName = req.user.name;
|
||||||
|
posMaster.authRoleId = body.authRoleId
|
||||||
|
await this.posMasterRepository.save(posMaster);
|
||||||
|
return new HttpSuccess();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Post("employee")
|
||||||
|
public async AddAuthRoleEmployee(@Request() req: RequestWithUser, @Body() body: CreateAddAuthRole) {
|
||||||
|
const getDetail = await this.authRoleRepo.findOneBy({ id: body.authRoleId });
|
||||||
|
if (!getDetail) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลสิทธิ์");
|
||||||
|
|
||||||
|
const posMaster = await this.employeePosMasterRepository.findOneBy({ id : body.posMasterId })
|
||||||
|
if (!posMaster) throw new HttpError(HttpStatus.NOT_FOUND, "ไม่พบข้อมูลตำแหน่ง");
|
||||||
|
|
||||||
|
posMaster.lastUpdateUserId = req.user.sub;
|
||||||
|
posMaster.lastUpdateFullName = req.user.name;
|
||||||
|
posMaster.authRoleId = body.authRoleId
|
||||||
|
await this.employeePosMasterRepository.save(posMaster);
|
||||||
return new HttpSuccess();
|
return new HttpSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -165,8 +165,8 @@ export class ChangePositionController extends Controller {
|
||||||
.createQueryBuilder("changePosition")
|
.createQueryBuilder("changePosition")
|
||||||
.leftJoinAndSelect("changePosition.profileChangePosition", "profileChangePosition")
|
.leftJoinAndSelect("changePosition.profileChangePosition", "profileChangePosition")
|
||||||
.where(
|
.where(
|
||||||
searchKeyword ?
|
searchKeyword
|
||||||
"changePosition.name LIKE :keyword OR changePosition.date LIKE :keyword OR changePosition.status LIKE :keyword"
|
? "changePosition.name LIKE :keyword OR changePosition.date LIKE :keyword OR changePosition.status LIKE :keyword"
|
||||||
: "1=1",
|
: "1=1",
|
||||||
{ keyword: `%${searchKeyword}%` }
|
{ keyword: `%${searchKeyword}%` }
|
||||||
)
|
)
|
||||||
|
|
@ -262,33 +262,68 @@ export class ChangePositionController extends Controller {
|
||||||
@Query() searchKeyword: string = "",
|
@Query() searchKeyword: string = "",
|
||||||
|
|
||||||
) {
|
) {
|
||||||
const findData = await this.profileChangePositionRepository.find({
|
|
||||||
where: { changePositionId: changePositionId }
|
|
||||||
});
|
|
||||||
if (!findData) throw new HttpError(HttpStatusCode.NOT_FOUND, "ไม่พบข้อมูลรอบย้ายสับเปลี่ยนตำแหน่ง");
|
|
||||||
|
|
||||||
const [profileChangePosition, total] = await AppDataSource.getRepository(ProfileChangePosition)
|
const [profileChangePosition, total] = await AppDataSource.getRepository(ProfileChangePosition)
|
||||||
.createQueryBuilder("profileChangePosition")
|
.createQueryBuilder("profileChangePosition")
|
||||||
.where("profileChangePosition.changePositionId LIKE :id", { id: changePositionId })
|
.where({ changePositionId: changePositionId })
|
||||||
.andWhere(
|
.andWhere(
|
||||||
searchKeyword ?
|
new Brackets((qb) => {
|
||||||
"CONCAT(profileChangePosition.prefix, profileChangePosition.firstName, ' ', profileChangePosition.lastName) LIKE :keyword"
|
qb.where(
|
||||||
: "1=1",
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
{
|
? "profileChangePosition.prefix LIKE :keyword"
|
||||||
keyword: `%${searchKeyword}%`,
|
: "1=1",
|
||||||
},
|
{
|
||||||
)
|
keyword: `%${searchKeyword}%`,
|
||||||
.andWhere(
|
},
|
||||||
searchKeyword ?
|
)
|
||||||
"profileChangePosition.citizenId LIKE :keyword OR profileChangePosition.status LIKE :keyword"
|
.orWhere(
|
||||||
: "1=1",
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
{ keyword: `%${searchKeyword}%` }
|
? "profileChangePosition.firstName LIKE :keyword"
|
||||||
)
|
: "1=1",
|
||||||
.andWhere(
|
{
|
||||||
searchKeyword ?
|
keyword: `%${searchKeyword}%`,
|
||||||
"profileChangePosition.birthDate LIKE :keyword OR profileChangePosition.lastUpdatedAt LIKE :keyword"
|
},
|
||||||
: "1=1",
|
)
|
||||||
{ keyword: `%${searchKeyword}%` }
|
.orWhere(
|
||||||
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
|
? "profileChangePosition.lastName LIKE :keyword"
|
||||||
|
: "1=1",
|
||||||
|
{
|
||||||
|
keyword: `%${searchKeyword}%`,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.orWhere(
|
||||||
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
|
? "profileChangePosition.citizenId LIKE :keyword"
|
||||||
|
: "1=1",
|
||||||
|
{
|
||||||
|
keyword: `%${searchKeyword}%`,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.orWhere(
|
||||||
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
|
? "profileChangePosition.birthDate LIKE :keyword"
|
||||||
|
: "1=1",
|
||||||
|
{
|
||||||
|
keyword: `%${searchKeyword}%`,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.orWhere(
|
||||||
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
|
? "profileChangePosition.lastUpdatedAt LIKE :keyword"
|
||||||
|
: "1=1",
|
||||||
|
{
|
||||||
|
keyword: `%${searchKeyword}%`,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
.orWhere(
|
||||||
|
searchKeyword != undefined && searchKeyword != null && searchKeyword != ""
|
||||||
|
? "profileChangePosition.status LIKE :keyword"
|
||||||
|
: "1=1",
|
||||||
|
{
|
||||||
|
keyword: `%${searchKeyword}%`,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
}),
|
||||||
)
|
)
|
||||||
.orderBy("profileChangePosition.createdAt", "ASC")
|
.orderBy("profileChangePosition.createdAt", "ASC")
|
||||||
.skip((page - 1) * pageSize)
|
.skip((page - 1) * pageSize)
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,8 @@ import {
|
||||||
ProfileChangeName,
|
ProfileChangeName,
|
||||||
UpdateProfileChangeName,
|
UpdateProfileChangeName,
|
||||||
} from "../entities/ProfileChangeName";
|
} from "../entities/ProfileChangeName";
|
||||||
|
import CallAPI from "../interfaces/call-api";
|
||||||
|
import { updateName } from "../keycloak";
|
||||||
|
|
||||||
@Route("api/v1/org/profile/changeName")
|
@Route("api/v1/org/profile/changeName")
|
||||||
@Tags("ProfileChangeName")
|
@Tags("ProfileChangeName")
|
||||||
|
|
@ -145,6 +147,16 @@ export class ProfileChangeNameController extends Controller {
|
||||||
profile.prefix = body.prefix ?? profile.prefix;
|
profile.prefix = body.prefix ?? profile.prefix;
|
||||||
await this.profileRepository.save(profile);
|
await this.profileRepository.save(profile);
|
||||||
|
|
||||||
|
// if (profile != null) {
|
||||||
|
// const result = await updateName(profile.id, profile.firstName, profile.lastName,req);
|
||||||
|
|
||||||
|
// const _mapData = {
|
||||||
|
// data: mappedData,
|
||||||
|
// total: total,
|
||||||
|
// };
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
return new HttpSuccess(data.id);
|
return new HttpSuccess(data.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1934,6 +1934,8 @@ export class ProfileController extends Controller {
|
||||||
*/
|
*/
|
||||||
@Post("search-personal")
|
@Post("search-personal")
|
||||||
async getProfileBySearchKeyword(
|
async getProfileBySearchKeyword(
|
||||||
|
@Query("page") page: number = 1,
|
||||||
|
@Query("pageSize") pageSize: number = 10,
|
||||||
@Body()
|
@Body()
|
||||||
body: {
|
body: {
|
||||||
fieldName: string;
|
fieldName: string;
|
||||||
|
|
@ -1941,9 +1943,12 @@ export class ProfileController extends Controller {
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
let findProfile: any;
|
let findProfile: any;
|
||||||
|
let total: any;
|
||||||
|
const skip = (page - 1) * pageSize;
|
||||||
|
const take = pageSize;
|
||||||
switch (body.fieldName) {
|
switch (body.fieldName) {
|
||||||
case "idcard":
|
case "citizenId":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { citizenId: Like(`%${body.keyword}%`) },
|
where: { citizenId: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1956,11 +1961,13 @@ export class ProfileController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "firstname":
|
case "firstname":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { firstName: Like(`%${body.keyword}%`) },
|
where: { firstName: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1973,11 +1980,13 @@ export class ProfileController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "lastname":
|
case "lastname":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { lastName: Like(`%${body.keyword}%`) },
|
where: { lastName: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1990,11 +1999,13 @@ export class ProfileController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
"posLevel",
|
"posLevel",
|
||||||
|
|
@ -2006,6 +2017,8 @@ export class ProfileController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -2095,7 +2108,7 @@ export class ProfileController extends Controller {
|
||||||
firstName: item.firstName,
|
firstName: item.firstName,
|
||||||
lastName: item.lastName,
|
lastName: item.lastName,
|
||||||
position: item.position,
|
position: item.position,
|
||||||
idcard: item.citizenId,
|
citizenId: item.citizenId,
|
||||||
email: item.email,
|
email: item.email,
|
||||||
phone: item.phone,
|
phone: item.phone,
|
||||||
name: fullName,
|
name: fullName,
|
||||||
|
|
@ -2127,7 +2140,10 @@ export class ProfileController extends Controller {
|
||||||
posTypeName: item.posType?.posTypeName,
|
posTypeName: item.posType?.posTypeName,
|
||||||
posLevelId: item.posLevelId,
|
posLevelId: item.posLevelId,
|
||||||
posLevelName: item.posLevel?.posLevelName,
|
posLevelName: item.posLevel?.posLevelName,
|
||||||
educationDegree: latestProfileEducation != null && latestProfileEducation.educationLevel != null ? latestProfileEducation.educationLevel : null,
|
educationDegree:
|
||||||
|
latestProfileEducation != null && latestProfileEducation.educationLevel != null
|
||||||
|
? latestProfileEducation.educationLevel
|
||||||
|
: null,
|
||||||
// ? {
|
// ? {
|
||||||
// id: latestProfileEducation.id,
|
// id: latestProfileEducation.id,
|
||||||
// degree: latestProfileEducation.degree,
|
// degree: latestProfileEducation.degree,
|
||||||
|
|
@ -2154,7 +2170,7 @@ export class ProfileController extends Controller {
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
return new HttpSuccess(mapDataProfile);
|
return new HttpSuccess({ data: mapDataProfile, total });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -3122,4 +3138,171 @@ export class ProfileController extends Controller {
|
||||||
await this.profileRepo.save(profile);
|
await this.profileRepo.save(profile);
|
||||||
return new HttpSuccess();
|
return new HttpSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* API ค้นหาข้อมูลทะเบียนประวัติที่ยังไม่เชื่อม keycloak
|
||||||
|
*
|
||||||
|
* @summary ค้นหาข้อมูลทะเบียนประวัติที่ยังไม่เชื่อม keycloak
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Post("search-personal-no-keycloak")
|
||||||
|
async getProfileBySearchKeywordNoKeyCloak(
|
||||||
|
@Query("page") page: number = 1,
|
||||||
|
@Query("pageSize") pageSize: number = 10,
|
||||||
|
@Body()
|
||||||
|
body: {
|
||||||
|
fieldName: string;
|
||||||
|
keyword?: string;
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
let findProfile: any;
|
||||||
|
let total: any;
|
||||||
|
const skip = (page - 1) * pageSize;
|
||||||
|
const take = pageSize;
|
||||||
|
switch (body.fieldName) {
|
||||||
|
case "citizenId":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
citizenId: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalary"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "firstname":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
firstName: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalary"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "lastname":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
lastName: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalary"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalary"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
const findRevision = await this.orgRevisionRepo.findOne({
|
||||||
|
where: { orgRevisionIsCurrent: true },
|
||||||
|
});
|
||||||
|
if (!findRevision) {
|
||||||
|
throw new HttpError(HttpStatus.NOT_FOUND, "not found. OrgRevision");
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDataProfile = await Promise.all(
|
||||||
|
findProfile.map(async (item: Profile) => {
|
||||||
|
const fullName = `${item.prefix} ${item.firstName} ${item.lastName}`;
|
||||||
|
const shortName =
|
||||||
|
item.current_holders.length == 0
|
||||||
|
? null
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4 !=
|
||||||
|
null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4.orgChild4ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild3 !=
|
||||||
|
null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild3.orgChild3ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgChild2 != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild2.orgChild2ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgChild1 != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild1.orgChild1ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) !=
|
||||||
|
null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgRoot != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot.orgRootShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: null;
|
||||||
|
|
||||||
|
const root =
|
||||||
|
item.current_holders.length == 0 ||
|
||||||
|
(item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot == null)
|
||||||
|
? null
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot;
|
||||||
|
|
||||||
|
let salary: any = "";
|
||||||
|
if (item != null && item.profileSalary != null && item.profileSalary.length > 0) {
|
||||||
|
let _salary: any = item.profileSalary.sort(
|
||||||
|
(a, b) =>
|
||||||
|
(b.date == null ? 0 : b.date.getTime()) - (a.date == null ? 0 : a.date.getTime()),
|
||||||
|
);
|
||||||
|
if (_salary.length > 0) {
|
||||||
|
salary = _salary[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const posMasterNo = item.current_holders?.find(
|
||||||
|
(x) => x.orgRevisionId == findRevision.id,
|
||||||
|
)?.posMasterNo;
|
||||||
|
|
||||||
|
const latestProfileEducation = await this.profileEducationRepository.findOne({
|
||||||
|
where: { profileId: item.id },
|
||||||
|
order: { endDate: "DESC" },
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
prefix: item.prefix,
|
||||||
|
rank: item.rank,
|
||||||
|
firstName: item.firstName,
|
||||||
|
lastName: item.lastName,
|
||||||
|
position: item.position,
|
||||||
|
citizenId: item.citizenId,
|
||||||
|
email: item.email,
|
||||||
|
phone: item.phone,
|
||||||
|
name: fullName,
|
||||||
|
birthDate: item.birthDate,
|
||||||
|
positionLevel: item.posLevelId,
|
||||||
|
positionLevelName: item.posLevel?.posLevelName,
|
||||||
|
positionType: item.posTypeId,
|
||||||
|
positionTypeName: item.posType?.posTypeName,
|
||||||
|
posNo: shortName,
|
||||||
|
organization: root == null ? null : root.orgRootShortName,
|
||||||
|
salary: salary == "" ? "" : salary.amount,
|
||||||
|
posMasterNo: posMasterNo ?? null,
|
||||||
|
posTypeId: item.posTypeId,
|
||||||
|
posTypeName: item.posType?.posTypeName,
|
||||||
|
posLevelId: item.posLevelId,
|
||||||
|
posLevelName: item.posLevel?.posLevelName,
|
||||||
|
educationDegree:
|
||||||
|
latestProfileEducation != null && latestProfileEducation.educationLevel != null
|
||||||
|
? latestProfileEducation.educationLevel
|
||||||
|
: null,
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
return new HttpSuccess({ data: mapDataProfile, total });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1356,6 +1356,8 @@ export class ProfileEmployeeController extends Controller {
|
||||||
*/
|
*/
|
||||||
@Post("search-personal")
|
@Post("search-personal")
|
||||||
async getProfileBySearchKeyword(
|
async getProfileBySearchKeyword(
|
||||||
|
@Query("page") page: number = 1,
|
||||||
|
@Query("pageSize") pageSize: number = 10,
|
||||||
@Body()
|
@Body()
|
||||||
body: {
|
body: {
|
||||||
fieldName: string;
|
fieldName: string;
|
||||||
|
|
@ -1363,9 +1365,12 @@ export class ProfileEmployeeController extends Controller {
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
let findProfile: any;
|
let findProfile: any;
|
||||||
|
let total: any;
|
||||||
|
const skip = (page - 1) * pageSize;
|
||||||
|
const take = pageSize;
|
||||||
switch (body.fieldName) {
|
switch (body.fieldName) {
|
||||||
case "idcard":
|
case "citizenId":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { citizenId: Like(`%${body.keyword}%`) },
|
where: { citizenId: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1378,11 +1383,13 @@ export class ProfileEmployeeController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "firstname":
|
case "firstname":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { firstName: Like(`%${body.keyword}%`) },
|
where: { firstName: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1395,11 +1402,13 @@ export class ProfileEmployeeController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "lastname":
|
case "lastname":
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
where: { lastName: Like(`%${body.keyword}%`) },
|
where: { lastName: Like(`%${body.keyword}%`) },
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
|
|
@ -1412,11 +1421,13 @@ export class ProfileEmployeeController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
findProfile = await this.profileRepo.find({
|
[findProfile, total] = await this.profileRepo.find({
|
||||||
relations: [
|
relations: [
|
||||||
"posType",
|
"posType",
|
||||||
"posLevel",
|
"posLevel",
|
||||||
|
|
@ -1428,6 +1439,8 @@ export class ProfileEmployeeController extends Controller {
|
||||||
"current_holders.orgChild3",
|
"current_holders.orgChild3",
|
||||||
"current_holders.orgChild4",
|
"current_holders.orgChild4",
|
||||||
],
|
],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
@ -1505,11 +1518,10 @@ export class ProfileEmployeeController extends Controller {
|
||||||
(x) => x.orgRevisionId == findRevision.id,
|
(x) => x.orgRevisionId == findRevision.id,
|
||||||
)?.posMasterNo;
|
)?.posMasterNo;
|
||||||
|
|
||||||
const latestProfileEducation = await this.profileEducationRepository.findOne({
|
const latestProfileEducation = await this.profileEducationRepository.findOne({
|
||||||
where: { profileEmployeeId: item.id },
|
where: { profileEmployeeId: item.id },
|
||||||
order: { endDate: "DESC" },
|
order: { endDate: "DESC" },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
id: item.id,
|
id: item.id,
|
||||||
|
|
@ -1518,7 +1530,7 @@ export class ProfileEmployeeController extends Controller {
|
||||||
firstName: item.firstName,
|
firstName: item.firstName,
|
||||||
lastName: item.lastName,
|
lastName: item.lastName,
|
||||||
position: item.position,
|
position: item.position,
|
||||||
idcard: item.citizenId,
|
citizenId: item.citizenId,
|
||||||
email: item.email,
|
email: item.email,
|
||||||
phone: item.phone,
|
phone: item.phone,
|
||||||
name: fullName,
|
name: fullName,
|
||||||
|
|
@ -1580,7 +1592,7 @@ export class ProfileEmployeeController extends Controller {
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
|
|
||||||
return new HttpSuccess(mapDataProfile);
|
return new HttpSuccess({ data: mapDataProfile, total });
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -2910,4 +2922,171 @@ export class ProfileEmployeeController extends Controller {
|
||||||
);
|
);
|
||||||
return new HttpSuccess();
|
return new HttpSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* API ค้นหาข้อมูลทะเบียนประวัติที่ยังไม่เชื่อม keycloak
|
||||||
|
*
|
||||||
|
* @summary ค้นหาข้อมูลทะเบียนประวัติที่ยังไม่เชื่อม keycloak
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Post("search-personal-no-keycloak")
|
||||||
|
async getProfileBySearchKeywordNoKeyCloak(
|
||||||
|
@Query("page") page: number = 1,
|
||||||
|
@Query("pageSize") pageSize: number = 10,
|
||||||
|
@Body()
|
||||||
|
body: {
|
||||||
|
fieldName: string;
|
||||||
|
keyword?: string;
|
||||||
|
},
|
||||||
|
) {
|
||||||
|
let findProfile: any;
|
||||||
|
let total: any;
|
||||||
|
const skip = (page - 1) * pageSize;
|
||||||
|
const take = pageSize;
|
||||||
|
switch (body.fieldName) {
|
||||||
|
case "citizenId":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
citizenId: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalarys"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "firstname":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
firstName: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalarys"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "lastname":
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
lastName: Like(`%${body.keyword}%`),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalarys"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
[findProfile, total] = await this.profileRepo.findAndCount({
|
||||||
|
where: {
|
||||||
|
keycloak: IsNull(),
|
||||||
|
},
|
||||||
|
relations: ["posType", "posLevel", "current_holders", "profileSalarys"],
|
||||||
|
skip,
|
||||||
|
take,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
const findRevision = await this.orgRevisionRepo.findOne({
|
||||||
|
where: { orgRevisionIsCurrent: true },
|
||||||
|
});
|
||||||
|
if (!findRevision) {
|
||||||
|
throw new HttpError(HttpStatus.NOT_FOUND, "not found. OrgRevision");
|
||||||
|
}
|
||||||
|
|
||||||
|
const mapDataProfile = await Promise.all(
|
||||||
|
findProfile.map(async (item: ProfileEmployee) => {
|
||||||
|
const fullName = `${item.prefix} ${item.firstName} ${item.lastName}`;
|
||||||
|
const shortName =
|
||||||
|
item.current_holders.length == 0
|
||||||
|
? null
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4 !=
|
||||||
|
null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild4.orgChild4ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild3 !=
|
||||||
|
null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild3.orgChild3ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgChild2 != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild2.orgChild2ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgChild1 != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgChild1.orgChild1ShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id) !=
|
||||||
|
null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)
|
||||||
|
?.orgRoot != null
|
||||||
|
? `${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot.orgRootShortName}${item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.posMasterNo}`
|
||||||
|
: null;
|
||||||
|
|
||||||
|
const root =
|
||||||
|
item.current_holders.length == 0 ||
|
||||||
|
(item.current_holders.find((x) => x.orgRevisionId == findRevision.id) != null &&
|
||||||
|
item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot == null)
|
||||||
|
? null
|
||||||
|
: item.current_holders.find((x) => x.orgRevisionId == findRevision.id)?.orgRoot;
|
||||||
|
|
||||||
|
let salary: any = "";
|
||||||
|
if (item != null && item.profileSalarys != null && item.profileSalarys.length > 0) {
|
||||||
|
let _salary: any = item.profileSalarys.sort(
|
||||||
|
(a, b) =>
|
||||||
|
(b.date == null ? 0 : b.date.getTime()) - (a.date == null ? 0 : a.date.getTime()),
|
||||||
|
);
|
||||||
|
if (_salary.length > 0) {
|
||||||
|
salary = _salary[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const posMasterNo = item.current_holders?.find(
|
||||||
|
(x) => x.orgRevisionId == findRevision.id,
|
||||||
|
)?.posMasterNo;
|
||||||
|
|
||||||
|
const latestProfileEducation = await this.profileEducationRepository.findOne({
|
||||||
|
where: { profileEmployeeId: item.id },
|
||||||
|
order: { endDate: "DESC" },
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
prefix: item.prefix,
|
||||||
|
rank: item.rank,
|
||||||
|
firstName: item.firstName,
|
||||||
|
lastName: item.lastName,
|
||||||
|
position: item.position,
|
||||||
|
citizenId: item.citizenId,
|
||||||
|
email: item.email,
|
||||||
|
phone: item.phone,
|
||||||
|
name: fullName,
|
||||||
|
birthDate: item.birthDate,
|
||||||
|
positionLevel: item.posLevelId,
|
||||||
|
positionLevelName: item.posLevel?.posLevelName,
|
||||||
|
positionType: item.posTypeId,
|
||||||
|
positionTypeName: item.posType?.posTypeName,
|
||||||
|
posNo: shortName,
|
||||||
|
organization: root == null ? null : root.orgRootShortName,
|
||||||
|
salary: salary == "" ? "" : salary.amount,
|
||||||
|
posMasterNo: posMasterNo ?? null,
|
||||||
|
posTypeId: item.posTypeId,
|
||||||
|
posTypeName: item.posType?.posTypeName,
|
||||||
|
posLevelId: item.posLevelId,
|
||||||
|
posLevelName: item.posLevel?.posLevelName,
|
||||||
|
educationDegree:
|
||||||
|
latestProfileEducation != null && latestProfileEducation.educationLevel != null
|
||||||
|
? latestProfileEducation.educationLevel
|
||||||
|
: null,
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
|
||||||
|
return new HttpSuccess({ data: mapDataProfile, total });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,10 @@ import {
|
||||||
getRoleMappings,
|
getRoleMappings,
|
||||||
getUserCount,
|
getUserCount,
|
||||||
} from "../keycloak";
|
} from "../keycloak";
|
||||||
|
import { AppDataSource } from "../database/data-source";
|
||||||
|
import { Profile } from "../entities/Profile";
|
||||||
|
import { ProfileEmployee } from "../entities/ProfileEmployee";
|
||||||
|
import { IsNull } from "typeorm";
|
||||||
// import * as io from "../lib/websocket";
|
// import * as io from "../lib/websocket";
|
||||||
// import elasticsearch from "../elasticsearch";
|
// import elasticsearch from "../elasticsearch";
|
||||||
// import { StorageFolder } from "../interfaces/storage-fs";
|
// import { StorageFolder } from "../interfaces/storage-fs";
|
||||||
|
|
@ -38,7 +42,6 @@ import {
|
||||||
// if (!process.env.ELASTICSEARCH_INDEX) throw Error("Default ElasticSearch index must be specified.");
|
// if (!process.env.ELASTICSEARCH_INDEX) throw Error("Default ElasticSearch index must be specified.");
|
||||||
|
|
||||||
// const DEFAULT_INDEX = process.env.ELASTICSEARCH_INDEX;
|
// const DEFAULT_INDEX = process.env.ELASTICSEARCH_INDEX;
|
||||||
|
|
||||||
function stripLeadingSlash(str: string) {
|
function stripLeadingSlash(str: string) {
|
||||||
return str.replace(/^\//, "");
|
return str.replace(/^\//, "");
|
||||||
}
|
}
|
||||||
|
|
@ -47,6 +50,10 @@ function stripLeadingSlash(str: string) {
|
||||||
@Tags("Single-Sign On")
|
@Tags("Single-Sign On")
|
||||||
@Security("bearerAuth")
|
@Security("bearerAuth")
|
||||||
export class KeycloakController extends Controller {
|
export class KeycloakController extends Controller {
|
||||||
|
|
||||||
|
private profileRepo = AppDataSource.getRepository(Profile);
|
||||||
|
private profileEmpRepo = AppDataSource.getRepository(ProfileEmployee);
|
||||||
|
|
||||||
@Get("user/{id}")
|
@Get("user/{id}")
|
||||||
async getUser(@Path("id") id: string) {
|
async getUser(@Path("id") id: string) {
|
||||||
const userData = await getUser(id);
|
const userData = await getUser(id);
|
||||||
|
|
@ -80,6 +87,7 @@ export class KeycloakController extends Controller {
|
||||||
lastName?: string;
|
lastName?: string;
|
||||||
email?: string;
|
email?: string;
|
||||||
roles?: string[];
|
roles?: string[];
|
||||||
|
profileId?: string;
|
||||||
},
|
},
|
||||||
) {
|
) {
|
||||||
const userId = await createUser(body.username, body.password, {
|
const userId = await createUser(body.username, body.password, {
|
||||||
|
|
@ -133,6 +141,17 @@ export class KeycloakController extends Controller {
|
||||||
role: body.roles || [],
|
role: body.roles || [],
|
||||||
};
|
};
|
||||||
const addRole = await this.addRole(userId, _roles);
|
const addRole = await this.addRole(userId, _roles);
|
||||||
|
|
||||||
|
const profile = await this.profileRepo.findOne({
|
||||||
|
where: {
|
||||||
|
id: body.profileId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (profile) {
|
||||||
|
profile.keycloak = userId;
|
||||||
|
await this.profileRepo.save(profile);
|
||||||
|
}
|
||||||
return userId;
|
return userId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -166,6 +185,17 @@ export class KeycloakController extends Controller {
|
||||||
async deleteUser(@Path() userId: string) {
|
async deleteUser(@Path() userId: string) {
|
||||||
const result = await deleteUser(userId);
|
const result = await deleteUser(userId);
|
||||||
if (!result) throw new Error("Failed. Cannot delete userId.");
|
if (!result) throw new Error("Failed. Cannot delete userId.");
|
||||||
|
|
||||||
|
const profile = await this.profileRepo.findOne({
|
||||||
|
where: {
|
||||||
|
id: userId,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
if (profile) {
|
||||||
|
profile.keycloak = "";
|
||||||
|
await this.profileRepo.save(profile);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// @Security("bearerAuth", ["system", "admin"])
|
// @Security("bearerAuth", ["system", "admin"])
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -203,6 +203,45 @@ export async function editUser(userId: string, opts: Record<string, any>) {
|
||||||
const id = path?.split("/").at(-1);
|
const id = path?.split("/").at(-1);
|
||||||
return id || true;
|
return id || true;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Update keycloak user by uuid
|
||||||
|
*
|
||||||
|
* Client must have permission to manage realm's user
|
||||||
|
*
|
||||||
|
* @returns user uuid or true if success, false otherwise.
|
||||||
|
*/
|
||||||
|
export async function updateName(
|
||||||
|
userId: string,
|
||||||
|
firstName: string,
|
||||||
|
lastName: string,
|
||||||
|
opts: Record<string, any>,
|
||||||
|
) {
|
||||||
|
const { password, ...rest } = opts;
|
||||||
|
|
||||||
|
const res = await fetch(`${KC_URL}/admin/realms/${KC_REALM}/users/${userId}`, {
|
||||||
|
// prettier-ignore
|
||||||
|
headers: {
|
||||||
|
"authorization": `Bearer ${await getToken()}`,
|
||||||
|
"content-type": `application/json`,
|
||||||
|
},
|
||||||
|
method: "PUT",
|
||||||
|
body: JSON.stringify({
|
||||||
|
enabled: true,
|
||||||
|
credentials: (password && [{ type: "password", value: opts?.password }]) || undefined,
|
||||||
|
...rest,
|
||||||
|
}),
|
||||||
|
}).catch((e) => console.log("Keycloak Error: ", e));
|
||||||
|
|
||||||
|
if (!res) return false;
|
||||||
|
if (!res.ok) {
|
||||||
|
// return Boolean(console.error("Keycloak Error Response: ", await res.json()));
|
||||||
|
return await res.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
const path = res.headers.get("Location");
|
||||||
|
const id = path?.split("/").at(-1);
|
||||||
|
return id || true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Delete keycloak user by uuid
|
* Delete keycloak user by uuid
|
||||||
|
|
@ -588,4 +627,6 @@ export async function removeUserGroup(userId: string, groupId: string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue