This commit is contained in:
AdisakKanthawilang 2024-11-01 13:55:37 +07:00
parent e0f78a89e9
commit c082ae8891

View file

@ -1695,171 +1695,157 @@ export class PositionController extends Controller {
child4: null, child4: null,
privilege: "OWNER", privilege: "OWNER",
}; };
const conditions = [ const conditions = [
{ {
...checkChildConditions, ...checkChildConditions,
...typeCondition, ...typeCondition,
...revisionCondition, ...revisionCondition,
...(masterId.length > 0 ? { id: In(masterId) } : {}), ...(body.keyword &&
}, (masterId.length > 0
]; ? { id: In(masterId) }
: { posMasterNo: Like(`%${body.keyword}%`) })),
},
];
let [posMaster, total] = await AppDataSource.getRepository(PosMaster) let [posMaster, total] = await AppDataSource.getRepository(PosMaster)
.createQueryBuilder("posMaster") .createQueryBuilder("posMaster")
.leftJoinAndSelect("posMaster.orgRoot", "orgRoot") .leftJoinAndSelect("posMaster.orgRoot", "orgRoot")
.leftJoinAndSelect("posMaster.orgChild1", "orgChild1") .leftJoinAndSelect("posMaster.orgChild1", "orgChild1")
.leftJoinAndSelect("posMaster.orgChild2", "orgChild2") .leftJoinAndSelect("posMaster.orgChild2", "orgChild2")
.leftJoinAndSelect("posMaster.orgChild3", "orgChild3") .leftJoinAndSelect("posMaster.orgChild3", "orgChild3")
.leftJoinAndSelect("posMaster.orgChild4", "orgChild4") .leftJoinAndSelect("posMaster.orgChild4", "orgChild4")
.leftJoinAndSelect("posMaster.current_holder", "current_holder") .leftJoinAndSelect("posMaster.current_holder", "current_holder")
.leftJoinAndSelect("posMaster.next_holder", "next_holder") .leftJoinAndSelect("posMaster.next_holder", "next_holder")
.leftJoinAndSelect("posMaster.orgRevision", "orgRevision") .leftJoinAndSelect("posMaster.orgRevision", "orgRevision")
.where(conditions) .where(conditions)
.andWhere( .andWhere(
_data.root != undefined && _data.root != null _data.root != undefined && _data.root != null
? _data.root[0] != null ? _data.root[0] != null
? `posMaster.orgRootId IN (:...root)` ? `posMaster.orgRootId IN (:...root)`
: `posMaster.orgRootId is null` : `posMaster.orgRootId is null`
: "1=1", : "1=1",
{ {
root: _data.root, root: _data.root,
}, },
) )
.andWhere( .andWhere(
_data.child1 != undefined && _data.child1 != null _data.child1 != undefined && _data.child1 != null
? _data.child1[0] != null ? _data.child1[0] != null
? `posMaster.orgChild1Id IN (:...child1)` ? `posMaster.orgChild1Id IN (:...child1)`
: `posMaster.orgChild1Id is null` : `posMaster.orgChild1Id is null`
: "1=1", : "1=1",
{ {
child1: _data.child1, child1: _data.child1,
}, },
) )
.andWhere( .andWhere(
_data.child2 != undefined && _data.child2 != null _data.child2 != undefined && _data.child2 != null
? _data.child2[0] != null ? _data.child2[0] != null
? `posMaster.orgChild2Id IN (:...child2)` ? `posMaster.orgChild2Id IN (:...child2)`
: `posMaster.orgChild2Id is null` : `posMaster.orgChild2Id is null`
: "1=1", : "1=1",
{ {
child2: _data.child2, child2: _data.child2,
}, },
) )
.andWhere( .andWhere(
_data.child3 != undefined && _data.child3 != null _data.child3 != undefined && _data.child3 != null
? _data.child3[0] != null ? _data.child3[0] != null
? `posMaster.orgChild3Id IN (:...child3)` ? `posMaster.orgChild3Id IN (:...child3)`
: `posMaster.orgChild3Id is null` : `posMaster.orgChild3Id is null`
: "1=1", : "1=1",
{ {
child3: _data.child3, child3: _data.child3,
}, },
) )
.andWhere( .andWhere(
_data.child4 != undefined && _data.child4 != null _data.child4 != undefined && _data.child4 != null
? _data.child4[0] != null ? _data.child4[0] != null
? `posMaster.orgChild4Id IN (:...child4)` ? `posMaster.orgChild4Id IN (:...child4)`
: `posMaster.orgChild4Id is null` : `posMaster.orgChild4Id is null`
: "1=1", : "1=1",
{ {
child4: _data.child4, child4: _data.child4,
}, },
) )
.andWhere( .orWhere(
new Brackets((qb) => { new Brackets((qb) => {
qb.orWhere( qb.andWhere(
new Brackets((qb) => { body.keyword != null && body.keyword != ""
qb.andWhere( ? body.isAll == false
body.keyword != null && body.keyword != "" ? searchShortName
? body.isAll == false : `CASE WHEN posMaster.orgChild1 is null THEN ${searchShortName0} WHEN posMaster.orgChild2 is null THEN ${searchShortName1} WHEN posMaster.orgChild3 is null THEN ${searchShortName2} WHEN posMaster.orgChild4 is null THEN ${searchShortName3} ELSE ${searchShortName4} END LIKE '%${body.keyword}%'`
? searchShortName : "1=1",
: `CASE WHEN posMaster.orgChild1 is null THEN ${searchShortName0} WHEN posMaster.orgChild2 is null THEN ${searchShortName1} WHEN posMaster.orgChild3 is null THEN ${searchShortName2} WHEN posMaster.orgChild4 is null THEN ${searchShortName3} ELSE ${searchShortName4} END LIKE '%${body.keyword}%'`
: "1=1",
)
.andWhere(checkChildConditions)
.andWhere(typeCondition)
.andWhere(revisionCondition);
}),
)
.orWhere(
new Brackets((qb) => {
qb.andWhere(
body.keyword != null && body.keyword != ""
? `CONCAT(current_holder.prefix, current_holder.firstName," ",current_holder.lastName) like '%${body.keyword}%'`
: "1=1",
{
keyword: `%${body.keyword}%`,
},
)
.andWhere(checkChildConditions)
.andWhere(typeCondition)
.andWhere(revisionCondition);
}),
) )
.orWhere( .andWhere(checkChildConditions)
new Brackets((qb) => { .andWhere(typeCondition)
qb.andWhere( .andWhere(revisionCondition);
body.keyword != null && body.keyword != "" }),
? `CASE WHEN orgRevision.orgRevisionIsDraft = true THEN CONCAT(next_holder.prefix, next_holder.firstName,' ', next_holder.lastName) ELSE CONCAT(current_holder.prefix, current_holder.firstName,' ' , current_holder.lastName) END LIKE '%${body.keyword}%'` )
: "1=1", .orWhere(
{ new Brackets((qb) => {
keyword: `%${body.keyword}%`, qb.andWhere(
}, body.keyword != null && body.keyword != ""
) ? `CONCAT(current_holder.prefix, current_holder.firstName," ",current_holder.lastName) like '%${body.keyword}%'`
.andWhere(checkChildConditions) : "1=1",
.andWhere(typeCondition) {
.andWhere(revisionCondition); keyword: `%${body.keyword}%`,
}), },
) )
.orWhere( .andWhere(checkChildConditions)
new Brackets((qb) => { .andWhere(typeCondition)
qb.andWhere( .andWhere(revisionCondition);
body.keyword != null && body.keyword != "" }),
? body.isAll == false )
? searchShortName .orWhere(
: `CASE WHEN posMaster.orgChild1 is null THEN ${searchShortName0} WHEN posMaster.orgChild2 is null THEN ${searchShortName1} WHEN posMaster.orgChild3 is null THEN ${searchShortName2} WHEN posMaster.orgChild4 is null THEN ${searchShortName3} ELSE ${searchShortName4} END LIKE '%${body.keyword}%'` new Brackets((qb) => {
: "1=1", qb.andWhere(
) body.keyword != null && body.keyword != ""
.andWhere(checkChildConditions) ? `CASE WHEN orgRevision.orgRevisionIsDraft = true THEN CONCAT(next_holder.prefix, next_holder.firstName,' ', next_holder.lastName) ELSE CONCAT(current_holder.prefix, current_holder.firstName,' ' , current_holder.lastName) END LIKE '%${body.keyword}%'`
.andWhere(typeCondition) : "1=1",
.andWhere(revisionCondition); {
}), keyword: `%${body.keyword}%`,
); },
}), )
) .andWhere(checkChildConditions)
.orderBy("posMaster.posMasterOrder", "ASC") .andWhere(typeCondition)
.skip((body.page - 1) * body.pageSize) .andWhere(revisionCondition);
.take(body.pageSize) }),
.getManyAndCount(); )
.orderBy("posMaster.posMasterOrder", "ASC")
.skip((body.page - 1) * body.pageSize)
.take(body.pageSize)
.getManyAndCount();
//แก้ค้นหา //แก้ค้นหา
let _position: any[] = []; let _position: any[] = [];
let x: any = null; let x: any = null;
let y: any = null; let y: any = null;
if (body.keyword != null && body.keyword != "") { if (body.keyword != null && body.keyword != ""){
const position = await this.positionRepository.find({ const position = await this.positionRepository.find({
relations: ["posType", "posLevel", "posExecutive"], relations: ["posType", "posLevel", "posExecutive"],
where: { posMasterId: In(posMaster.map((x) => x.id)) }, where: { posMasterId: In(posMaster.map(x => x.id))},
order: { createdAt: "ASC" }, order: { createdAt: "ASC" }
}); });
for (let data of position) { for(let data of position){
x = data.posMasterId; x = data.posMasterId
if (y != x) { if(y != x){
if ( if(
data.positionName.includes(body.keyword) || data.positionName.includes(body.keyword) ||
data.posType.posTypeName.includes(body.keyword) || data.posType.posTypeName.includes(body.keyword) ||
data.posLevel.posLevelName.includes(body.keyword) data.posLevel.posLevelName.includes(body.keyword)
) { ){
_position.push(data); _position.push(data);
}
} }
y = x;
} }
y = x;
} }
}
if (_position.length > 0) { if(_position.length > 0){
posMaster = posMaster.filter((x) => _position.some((y) => y.posMasterId === x.id)); posMaster = posMaster.filter((x) => _position.some(y => y.posMasterId === x.id));
} }
const formattedData = await Promise.all( const formattedData = await Promise.all(
posMaster.map(async (posMaster) => { posMaster.map(async (posMaster) => {