no message

This commit is contained in:
Kittapath 2024-06-24 10:52:40 +07:00
parent 5a634b4dd3
commit b11be3364f
7 changed files with 201 additions and 125 deletions

View file

@ -2705,7 +2705,6 @@ export class ProfileEmployeeController extends Controller {
refCommandNo: null,
templateDoc: requestBody.leaveReason,
});
return new HttpSuccess();
}
@ -3032,6 +3031,13 @@ export class ProfileEmployeeController extends Controller {
profile.employeeClass = "PERM";
await this.profileRepo.save(profile);
});
await new CallAPI()
.PostData(request, "org/employee/pos/report/current", {
posmasterId: profile.posmasterIdTemp,
positionId: profile.positionIdTemp,
profileId: profile.id,
})
.then(async (x) => {});
}
}),
);