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