From f19f10797167a4ba0bb5309714a97045ece0d569 Mon Sep 17 00:00:00 2001 From: sergiodt Date: Fri, 19 Jul 2024 08:27:22 +0200 Subject: [PATCH] feat checkExpeditionPrintOut refs #7751 --- back/models/expedition_PrintOut.json | 3 +++ db/versions/11161-limeOak/00-firstScript.sql | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 db/versions/11161-limeOak/00-firstScript.sql diff --git a/back/models/expedition_PrintOut.json b/back/models/expedition_PrintOut.json index 23a2fdbc4..dd49b0234 100644 --- a/back/models/expedition_PrintOut.json +++ b/back/models/expedition_PrintOut.json @@ -14,6 +14,9 @@ }, "itemFk": { "type": "number" + }, + "isChecked": { + "type": "boolean" } } } \ No newline at end of file diff --git a/db/versions/11161-limeOak/00-firstScript.sql b/db/versions/11161-limeOak/00-firstScript.sql new file mode 100644 index 000000000..aab05fa49 --- /dev/null +++ b/db/versions/11161-limeOak/00-firstScript.sql @@ -0,0 +1,8 @@ + +ALTER TABLE dipole.expedition_PrintOut ADD isChecked BOOL DEFAULT FALSE NOT NULL COMMENT 'Indica si la expedición ha sido revisada por un revisor'; + +DELETE FROM salix.ACL + WHERE model = 'Expedition_PrintOut'; + +INSERT INTO salix.ACL ( model, property, accessType, permission, principalType, principalId) +VALUES( 'Expedition_PrintOut', '*', '*', 'ALLOW', 'ROLE', 'production'); \ No newline at end of file