feat: refs #6449 add summaryId
gitea/mylogger/pipeline/pr-master This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-07-30 13:13:30 +02:00
parent 217e1cc177
commit 01a08883e8
2 changed files with 9 additions and 4 deletions

View File

@ -23,6 +23,7 @@ logs:
- itemTag
- name: item
showField: name
showId: id
logFields:
- size
exclude:

View File

@ -80,7 +80,8 @@ module.exports = class MyLogger {
oldInstance = ?,
newInstance = ?,
changedModelId = ?,
changedModelValue = ?`
changedModelValue = ?,
summaryId = ?`
);
logInfo.fetchStmt = await db.prepare(
`SELECT id FROM ${sqlTable}
@ -95,7 +96,8 @@ module.exports = class MyLogger {
SET originFk = ?,
creationDate = ?,
oldInstance = ?,
changedModelValue = ?
changedModelValue = ?,
summaryId = ?
WHERE id = ?`
);
}
@ -512,7 +514,7 @@ module.exports = class MyLogger {
oldI = change.instance;
break;
}
const summaryId = row[tableInfo.conf.showId];
const modelId = row[tableInfo.idName];
const modelValue = change.modelValue ?? null;
const oldInstance = oldI ? JSON.stringify(oldI) : null;
@ -538,6 +540,7 @@ module.exports = class MyLogger {
created,
oldInstance,
modelValue,
summaryId,
deleteRow.id
]);
}
@ -553,7 +556,8 @@ module.exports = class MyLogger {
oldInstance,
newI ? JSON.stringify(newI) : null,
modelId,
modelValue
modelValue,
summaryId
]);
}