no message

This commit is contained in:
Kittapath 2024-03-28 14:39:55 +07:00
parent 1d2c817044
commit acbc71c2e6

View file

@ -124,7 +124,7 @@ export class SalaryPeriodEmployeeController extends Controller {
const _salaryOrg = await this.salaryOrgRepository.find({
relations: ["salaryPeriod", "salaryProfiles"],
where: {
group: Like(`%${body.group}%`),
group: Like(`%${body.group.trim().toUpperCase()}%`),
snapshot: body.snapshot.trim().toUpperCase(),
salaryPeriod: { period: body.period.trim().toUpperCase(), year: body.year },
},