fix ระบบไม่ปั๊มประวัติข้อมูลเดิมให้ row แรก #2535
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m2s

This commit is contained in:
harid 2026-05-29 14:08:25 +07:00
parent 774a58bc22
commit ad9a7dcbb6
4 changed files with 78 additions and 0 deletions

View file

@ -9151,4 +9151,30 @@ export class OrganizationDotnetController extends Controller {
});
return new HttpSuccess(filteredPosMasters);
}
/**
* API profileId
* @summary API profileId
*/
@Post("check-isLeave")
@Security("internalAuth")
async findProfileIsLeave(
@Body()
req: { profileIds: string[] }
) {
const profile = await this.profileRepo.find({
select: { id: true },
where: {
id: In(req.profileIds),
isLeave: true
}
});
if (profile.length === 0) {
return new HttpSuccess([]);
}
return new HttpSuccess(profile.map(p => p.id));
}
}