IDEMPIERE-4553 POS menu option throwing error (#394)

Inactivate the menu entry for POS - the swing client must activate it
This commit is contained in:
Carlos Ruiz 2020-11-22 02:51:06 +01:00 committed by GitHub
parent b05b26d9f1
commit 09c5f0ca24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -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
;

View File

@ -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
;