Revert "Merge pull request 'feat: refs #6449 addSummaryId' (#3) from 6449-addSummaryId into master"
gitea/mylogger/pipeline/head This commit looks good Details

This reverts commit 1e2948506e, reversing
changes made to 2bb99bf093.
This commit is contained in:
Guillermo Bonet 2024-07-23 11:41:50 +02:00
parent 1e2948506e
commit 217e1cc177
2 changed files with 4 additions and 9 deletions

View File

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

View File

@ -80,8 +80,7 @@ module.exports = class MyLogger {
oldInstance = ?,
newInstance = ?,
changedModelId = ?,
changedModelValue = ?,
summaryId = ?`
changedModelValue = ?`
);
logInfo.fetchStmt = await db.prepare(
`SELECT id FROM ${sqlTable}
@ -96,8 +95,7 @@ module.exports = class MyLogger {
SET originFk = ?,
creationDate = ?,
oldInstance = ?,
changedModelValue = ?,
summaryId = ?
changedModelValue = ?
WHERE id = ?`
);
}
@ -514,7 +512,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;
@ -540,7 +538,6 @@ module.exports = class MyLogger {
created,
oldInstance,
modelValue,
summaryId,
deleteRow.id
]);
}
@ -556,8 +553,7 @@ module.exports = class MyLogger {
oldInstance,
newI ? JSON.stringify(newI) : null,
modelId,
modelValue,
summaryId
modelValue
]);
}