Revert "Merge pull request 'feat: refs #6449 addSummaryId' (#3) from 6449-addSummaryId into master"
gitea/mylogger/pipeline/head This commit looks good
Details
gitea/mylogger/pipeline/head This commit looks good
Details
This reverts commit1e2948506e
, reversing changes made to2bb99bf093
.
This commit is contained in:
parent
1e2948506e
commit
217e1cc177
|
@ -23,7 +23,6 @@ logs:
|
|||
- itemTag
|
||||
- name: item
|
||||
showField: name
|
||||
showId: id
|
||||
logFields:
|
||||
- size
|
||||
exclude:
|
||||
|
|
12
mylogger.js
12
mylogger.js
|
@ -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
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue