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

@ -137,7 +137,14 @@ export class ProfileDisciplineEmployeeController extends Controller {
Object.assign(data, { ...body, ...meta });
await this.disciplineRepository.save(data);
const history = new ProfileDisciplineHistory();
history.profileDisciplineId = data.id;
await Promise.all([
this.disciplineRepository.save(data),
(history.profileDisciplineId = data.id),
this.disciplineHistoryRepository.save(history),
]);
return new HttpSuccess();
}
@ -155,11 +162,16 @@ export class ProfileDisciplineEmployeeController extends Controller {
const history = new ProfileDisciplineHistory();
Object.assign(history, { ...record, id: undefined });
Object.assign(record, body);
Object.assign(history, body);
history.profileDisciplineId = disciplineId;
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.disciplineRepository.save(record),