feat: refs #7287 Minor change
gitea/mylogger/pipeline/pr-master This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-08-27 09:55:05 +02:00
parent fda5726f55
commit 35c92e43ad
1 changed files with 3 additions and 2 deletions

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
]); ]);
} }