แก้ api เก็บประวัติแก้ทะเบียน

This commit is contained in:
kittapath 2024-08-13 17:43:30 +07:00
parent 576f6bcc0d
commit fd3f1fa515
62 changed files with 855 additions and 1471 deletions

View file

@ -27,6 +27,7 @@ import {
} from "../entities/ProfileChangeName";
import { ProfileEmployee } from "../entities/ProfileEmployee";
import permission from "../interfaces/permission";
import { updateName } from "../keycloak";
@Route("api/v1/org/profile-temp/changeName")
@Tags("ProfileChangeNameEmployee")
@Security("bearerAuth")
@ -140,14 +141,27 @@ export class ProfileChangeNameEmployeeTempController extends Controller {
};
Object.assign(data, { ...body, ...meta });
const history = new ProfileChangeNameHistory();
history.profileChangeNameId = data.id;
await this.changeNameRepository.save(data);
await Promise.all([
this.changeNameRepository.save(data),
(history.profileChangeNameId = data.id),
this.changeNameHistoryRepository.save(history),
]);
profile.firstName = body.firstName ?? profile.firstName;
profile.lastName = body.lastName ?? profile.lastName;
profile.prefix = body.prefix ?? profile.prefix;
await this.profileEmployeeRepo.save(profile);
if (profile != null && profile.keycloak != null) {
const result = await updateName(profile.keycloak, profile.firstName, profile.lastName);
if (!result) {
throw new Error(result.errorMessage);
}
}
return new HttpSuccess(data.id);
}
@ -164,11 +178,16 @@ export class ProfileChangeNameEmployeeTempController extends Controller {
const history = new ProfileChangeNameHistory();
Object.assign(history, { ...record, id: undefined });
Object.assign(record, body);
Object.assign(history, body);
history.profileChangeNameId = changeNameId;
record.lastUpdateUserId = req.user.sub;
record.lastUpdateFullName = req.user.name;
history.lastUpdateUserId = req.user.sub;
history.lastUpdateFullName = req.user.name;
history.createdUserId = req.user.sub;
history.createdFullName = req.user.name;
await Promise.all([
this.changeNameRepository.save(record),