export report leave
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m2s

This commit is contained in:
mamoss 2026-01-09 19:00:21 +07:00
parent 1f186502d5
commit 21bef607a1

View file

@ -6219,4 +6219,350 @@ export class OrganizationDotnetController extends Controller {
return new HttpSuccess(profile_);
}
/**
* . admin
*
* @summary . admin
*
*/
@Post("officer-by-admin-rolev3")
async GetOfficersByAdminRoleV3(
@Request() req: RequestWithUser,
@Body()
body: {
node: number;
nodeId: string;
role: string;
// isRetirement?: boolean;
// revisionId?: string;
reqNode?: number;
reqNodeId?: string;
startDate: Date;
endDate: Date;
},
) {
let typeCondition: any = {};
if (body.role === "CHILD" || body.role === "PARENT" || body.role === "BROTHER") {
if (body.role === "CHILD") {
switch (body.node) {
case 0:
typeCondition = {
orgRoot: {
ancestorDNA: body.nodeId,
},
};
break;
case 1:
typeCondition = {
orgChild1: {
ancestorDNA: body.nodeId,
},
};
break;
case 2:
typeCondition = {
orgChild2: {
ancestorDNA: body.nodeId,
},
};
break;
case 3:
typeCondition = {
orgChild3: {
ancestorDNA: body.nodeId,
},
};
break;
case 4:
typeCondition = {
orgChild4: {
ancestorDNA: body.nodeId,
},
};
break;
default:
typeCondition = {};
break;
}
} else if (body.role === "BROTHER") {
switch (body.node) {
case 0:
typeCondition = {
orgRoot: {
ancestorDNA: body.nodeId,
},
};
break;
case 1:
typeCondition = {
orgRoot: {
ancestorDNA: body.nodeId,
},
};
break;
case 2:
typeCondition = {
orgChild1: {
ancestorDNA: body.nodeId,
},
};
break;
case 3:
typeCondition = {
orgChild2: {
ancestorDNA: body.nodeId,
},
};
break;
case 4:
typeCondition = {
orgChild3: {
ancestorDNA: body.nodeId,
},
};
break;
default:
typeCondition = {};
break;
}
} else if (body.role === "PARENT") {
typeCondition = {
orgRoot: {
ancestorDNA: body.nodeId,
},
orgChild1: Not(IsNull()),
};
}
} else if (body.role === "OWNER" || body.role === "ROOT") {
switch (body.reqNode) {
case 0:
typeCondition = {
orgRoot: {
id: body.reqNodeId,
},
};
break;
case 1:
typeCondition = {
orgChild1: {
id: body.reqNodeId,
},
};
break;
case 2:
typeCondition = {
orgChild2: {
id: body.reqNodeId,
},
};
break;
case 3:
typeCondition = {
orgChild3: {
id: body.reqNodeId,
},
};
break;
case 4:
typeCondition = {
orgChild4: {
id: body.reqNodeId,
},
};
break;
default:
typeCondition = {};
break;
}
} else if (body.role === "NORMAL") {
switch (body.node) {
case 0:
typeCondition = {
orgRoot: {
ancestorDNA: body.nodeId,
},
orgChild1: IsNull(),
};
break;
case 1:
typeCondition = {
orgChild1: {
ancestorDNA: body.nodeId,
},
orgChild2: IsNull(),
};
break;
case 2:
typeCondition = {
orgChild2: {
ancestorDNA: body.nodeId,
},
orgChild3: IsNull(),
};
break;
case 3:
typeCondition = {
orgChild3: {
ancestorDNA: body.nodeId,
},
orgChild4: IsNull(),
};
break;
case 4:
typeCondition = {
orgChild4: {
ancestorDNA: body.nodeId,
},
};
break;
default:
typeCondition = {};
break;
}
}
let profile = await this.profileRepo.find({
where: { isLeave: false, isRetirement: false, current_holders: typeCondition },
relations: [
"posType",
"posLevel",
"current_holders",
"current_holders.orgRoot",
"current_holders.orgChild1",
"current_holders.orgChild2",
"current_holders.orgChild3",
"current_holders.orgChild4",
],
order: {
current_holders: {
orgRoot: {
orgRootOrder: "ASC",
},
orgChild1: {
orgChild1Order: "ASC",
},
orgChild2: {
orgChild2Order: "ASC",
},
orgChild3: {
orgChild3Order: "ASC",
},
orgChild4: {
orgChild4Order: "ASC",
},
posMasterNo: "ASC",
},
},
});
// if (body.isRetirement) {
// profile = await this.profileRepo.find({
// where: {
// isLeave: false,
// current_holders: typeCondition,
// isRetirement: true,
// },
// relations: [
// "posType",
// "posLevel",
// "current_holders",
// "current_holders.orgRoot",
// "current_holders.orgChild1",
// "current_holders.orgChild2",
// "current_holders.orgChild3",
// "current_holders.orgChild4",
// ],
// });
// }
// Filter only by date part, not time
const startDateOnly = new Date(
body.startDate.getFullYear(),
body.startDate.getMonth(),
body.startDate.getDate(),
);
const endDateOnly = new Date(
body.endDate.getFullYear(),
body.endDate.getMonth(),
body.endDate.getDate(),
);
let findRevision = await this.orgRevisionRepo.findOne({
where: {
orgPublishDate: Between(startDateOnly, endDateOnly),
},
});
const profile_ = await Promise.all(
profile.map(async (item: Profile) => {
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 Oc =
item.current_holders.length == 0
? null
: item.current_holders[0].orgChild4 != null
? `${item.current_holders[0].orgChild4.orgChild4Name}/${item.current_holders[0].orgChild3.orgChild3Name}/${item.current_holders[0].orgChild2.orgChild2Name}/${item.current_holders[0].orgChild1.orgChild1Name}/${item.current_holders[0].orgRoot.orgRootName}`
: item.current_holders[0].orgChild3 != null
? `${item.current_holders[0].orgChild3.orgChild3Name}/${item.current_holders[0].orgChild2.orgChild2Name}/${item.current_holders[0].orgChild1.orgChild1Name}/${item.current_holders[0].orgRoot.orgRootName}`
: item.current_holders[0].orgChild2 != null
? `${item.current_holders[0].orgChild2.orgChild2Name}/${item.current_holders[0].orgChild1.orgChild1Name}/${item.current_holders[0].orgRoot.orgRootName}`
: item.current_holders[0].orgChild1 != null
? `${item.current_holders[0].orgChild1.orgChild1Name}/${item.current_holders[0].orgRoot.orgRootName}`
: item.current_holders[0].orgRoot != null
? `${item.current_holders[0].orgRoot.orgRootName}`
: null;
let _posMaster = await this.posMasterRepository.findOne({
where: {
orgRevisionId: findRevision?.id,
current_holderId: item.id,
},
});
return {
id: item.id,
prefix: item.prefix,
firstName: item.firstName,
lastName: item.lastName,
citizenId: item.citizenId,
dateStart: item.dateStart,
dateAppoint: item.dateAppoint,
keycloak: item.keycloak,
posNo: shortName,
position: item.position,
positionLevel: item.posLevel?.posLevelName ?? null,
positionType: item.posType?.posTypeName ?? null,
oc: Oc,
orgRootId: _posMaster?.orgRootId,
orgChild1Id: _posMaster?.orgChild1Id,
orgChild2Id: _posMaster?.orgChild2Id,
orgChild3Id: _posMaster?.orgChild3Id,
orgChild4Id: _posMaster?.orgChild4Id,
};
}),
);
return new HttpSuccess(profile_);
}
}