From 09c5f0ca246b9a7a9e417cf0d80075e99844cc7a Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sun, 22 Nov 2020 02:51:06 +0100 Subject: [PATCH] IDEMPIERE-4553 POS menu option throwing error (#394) Inactivate the menu entry for POS - the swing client must activate it --- .../i8.1z/oracle/202011202059_IDEMPIERE-4553.sql | 11 +++++++++++ .../i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql create mode 100644 migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql diff --git a/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql b/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql new file mode 100644 index 0000000000..8c12212502 --- /dev/null +++ b/migration/i8.1z/oracle/202011202059_IDEMPIERE-4553.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4553 POS menu option throwing error +-- Nov 20, 2020, 8:58:28 PM CET +UPDATE AD_Menu SET IsActive='N',Updated=TO_DATE('2020-11-20 20:58:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=419 +; + +SELECT register_migration_script('202011202059_IDEMPIERE-4553.sql') FROM dual +; + diff --git a/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql b/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql new file mode 100644 index 0000000000..43458e208b --- /dev/null +++ b/migration/i8.1z/postgresql/202011202059_IDEMPIERE-4553.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4553 POS menu option throwing error +-- Nov 20, 2020, 8:58:28 PM CET +UPDATE AD_Menu SET IsActive='N',Updated=TO_TIMESTAMP('2020-11-20 20:58:28','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=419 +; + +SELECT register_migration_script('202011202059_IDEMPIERE-4553.sql') FROM dual +; +