แก้ 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

@ -154,15 +154,21 @@ export class ProfileAbilityEmployeeTempController extends Controller {
};
Object.assign(data, { ...body, ...meta });
const history = new ProfileAbilityHistory();
history.profileAbilityId = data.id;
await this.profileAbilityRepo.save(data);
await Promise.all([
this.profileAbilityRepo.save(data),
(history.profileAbilityId = data.id),
this.profileAbilityHistoryRepo.save(history),
]);
return new HttpSuccess();
}
@Patch("{abilityId}")
public async editProfileAbility(
@Body() requestBody: UpdateProfileAbility,
@Body() body: UpdateProfileAbility,
@Request() req: RequestWithUser,
@Path() abilityId: string,
) {
@ -172,12 +178,16 @@ export class ProfileAbilityEmployeeTempController extends Controller {
const history = new ProfileAbilityHistory();
Object.assign(history, { ...record, id: undefined });
Object.assign(record, requestBody);
Object.assign(record, body);
Object.assign(history, body);
history.profileAbilityId = abilityId;
history.lastUpdateFullName = req.user.name;
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.profileAbilityRepo.save(record),