Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix into dev
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Joan Sanchez 2023-03-23 08:20:33 +01:00
commit 7b5e0bae8e
8 changed files with 16 additions and 22 deletions

View File

@ -3,7 +3,8 @@
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model": "EntryLog", "model": "EntryLog",
"relation": "entry" "relation": "entry",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -2,7 +2,8 @@
"name": "Entry", "name": "Entry",
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model":"EntryLog" "model":"EntryLog",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -3,7 +3,8 @@
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model": "ItemLog", "model": "ItemLog",
"showField": "id" "showField": "id",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -2,7 +2,8 @@
"name": "Route", "name": "Route",
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model":"RouteLog" "model":"RouteLog",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -127,19 +127,6 @@ module.exports = Self => {
], myOptions); ], myOptions);
const ticket = await models.Ticket.findById(result[1][0].newTicketId, null, myOptions); const ticket = await models.Ticket.findById(result[1][0].newTicketId, null, myOptions);
const cleanInstance = JSON.parse(JSON.stringify(ticket));
const logRecord = {
originFk: cleanInstance.id,
userFk: myUserId,
action: 'insert',
changedModel: 'Ticket',
changedModelId: cleanInstance.id,
oldInstance: {},
newInstance: cleanInstance
};
await models.TicketLog.create(logRecord, myOptions);
if (tx) await tx.commit(); if (tx) await tx.commit();

View File

@ -4,7 +4,8 @@
"log": { "log": {
"model": "TicketLog", "model": "TicketLog",
"relation": "ticket", "relation": "ticket",
"showField": "concept" "showField": "concept",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -3,7 +3,8 @@
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model":"TicketLog", "model":"TicketLog",
"showField": "id" "showField": "id",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {

View File

@ -3,7 +3,8 @@
"base": "Loggable", "base": "Loggable",
"log": { "log": {
"model":"TravelLog", "model":"TravelLog",
"showField": "ref" "showField": "ref",
"grabUser": true
}, },
"options": { "options": {
"mysql": { "mysql": {