feat: refs #7584 modificaciones vistas con juan
gitea/mylogger/pipeline/pr-master This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-10-16 08:50:29 +02:00
parent 6b53029c06
commit 80ac579a47
2 changed files with 3 additions and 4 deletions

View File

@ -4,6 +4,7 @@ logMainShowField: false
upperCaseTable: true
userField: editorFk
rowExcludeField: logExclude
ignoreSystem: false
excludeRegex: '__$'
showFields:
- name

View File

@ -523,10 +523,8 @@ module.exports = class MyLogger {
`${logInfo.name}: ${originFk}, ${modelName}: ${modelId}`
);
const noInclude = tableInfo.rowExcludeField && !row.editorFk;
try {
if (isDelete && (!tableInfo.rowExcludeField || noInclude)) {
if (isDelete) {
[[deleteRow]] = await logInfo.fetchStmt.execute([
modelName, modelId, originFk
]);
@ -542,7 +540,7 @@ module.exports = class MyLogger {
}
if (!conf.testMode && (!isDelete || !deleteRow)) {
async function log(originFk) {
if (originFk == null || noInclude) return;
if (originFk == null) return;
await logInfo.addStmt.execute([
originFk,
row[tableInfo.userField] ?? null,