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

This commit is contained in:
Jorge Penadés 2023-10-16 08:18:00 +02:00
commit ab6c58cd12
4 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
INSERT INTO `salix`.`ACL` ( model, property, accessType, permission, principalType, principalId)
VALUES('TicketCollection', '*', 'WRITE', 'ALLOW', 'ROLE', 'production');

View File

@ -47,6 +47,11 @@
"type": "belongsTo", "type": "belongsTo",
"model": "VnUser", "model": "VnUser",
"foreignKey": "userFk" "foreignKey": "userFk"
},
"shelving": {
"type": "belongsTo",
"model": "Shelving",
"foreignKey": "shelvingFk"
} }
} }
} }

View File

@ -10,6 +10,9 @@
"id": { "id": {
"id": true, "id": true,
"type": "number" "type": "number"
},
"usedShelves": {
"type": "number"
} }
}, },
"relations": { "relations": {

View File

@ -47,6 +47,9 @@
}, },
"locker": { "locker": {
"type" : "number" "type" : "number"
},
"isF11Allowed": {
"type" : "boolean"
} }
}, },
"relations": { "relations": {