This commit is contained in:
Bright 2025-02-11 13:14:33 +07:00
parent a7e12be51f
commit 5edcb127f9

View file

@ -4707,15 +4707,17 @@ export class CommandController extends Controller {
if (!profile) {
throw new HttpError(HttpStatus.BAD_REQUEST, "ไม่พบ profile ดังกล่าว");
}
const orgRevision = await this.orgRevisionRepository.findOne({
where: {
orgRevisionIsCurrent: true,
orgRevisionIsDraft: false
}
});
const _posMaster = await this.employeePosMasterRepository.findOne({
where: {
orgRevision: {
orgRevisionIsCurrent: true,
orgRevisionIsDraft: false,
},
current_holderId: profile.id,
where: {
orgRevisionId: orgRevision?.id,
current_holderId: profile.id
},
order: { createdAt: "DESC" },
relations: {
orgRoot: true,
orgChild1: true,