feat: refs #7287 First commit #5

Open
guillermo wants to merge 3 commits from 7287-reasonLog into master
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 35c92e43ad - Show all commits

View File

@ -533,6 +533,7 @@ module.exports = class MyLogger {
);
try {
const reasonField = row[tableInfo.reasonField] ?? null;
if (isDelete) {
[[deleteRow]] = await logInfo.fetchStmt.execute([
modelName, modelId, originFk
@ -544,7 +545,7 @@ module.exports = class MyLogger {
oldInstance,
modelValue,
summaryId,
row[tableInfo.reasonField] ?? null,
reasonField,
deleteRow.id
]);
}
@ -562,7 +563,7 @@ module.exports = class MyLogger {
modelId,
modelValue,
summaryId,
row[tableInfo.reasonField] ?? null
reasonField
]);
}