From e725b3f6647a4a1df1b84d1ad7b24765fd6a18f7 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 16 Dec 2017 10:12:26 +0100 Subject: [PATCH] IDEMPIERE-1721 Window Position, tab Remuneration, refers to a disabled window --- .../i5.1/oracle/201712161006_IDEMPIERE-1721.sql | 15 +++++++++++++++ .../postgresql/201712161006_IDEMPIERE-1721.sql | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 migration/i5.1/oracle/201712161006_IDEMPIERE-1721.sql create mode 100644 migration/i5.1/postgresql/201712161006_IDEMPIERE-1721.sql diff --git a/migration/i5.1/oracle/201712161006_IDEMPIERE-1721.sql b/migration/i5.1/oracle/201712161006_IDEMPIERE-1721.sql new file mode 100644 index 0000000000..c3b53506ad --- /dev/null +++ b/migration/i5.1/oracle/201712161006_IDEMPIERE-1721.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-1721 Window Position, tab Remuneration, refers to a disabled window +-- Dec 16, 2017 10:04:11 AM CET +UPDATE AD_Window SET IsActive='Y', IsBetaFunctionality='N',Updated=TO_DATE('2017-12-16 10:04:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=353 +; + +-- Dec 16, 2017 10:04:11 AM CET +UPDATE AD_Menu SET Name='Remuneration', Description='Maintain Remuneration', IsActive='Y',Updated=TO_DATE('2017-12-16 10:04:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=532 +; + +SELECT register_migration_script('201712161006_IDEMPIERE-1721.sql') FROM dual +; + diff --git a/migration/i5.1/postgresql/201712161006_IDEMPIERE-1721.sql b/migration/i5.1/postgresql/201712161006_IDEMPIERE-1721.sql new file mode 100644 index 0000000000..a618574d99 --- /dev/null +++ b/migration/i5.1/postgresql/201712161006_IDEMPIERE-1721.sql @@ -0,0 +1,12 @@ +-- IDEMPIERE-1721 Window Position, tab Remuneration, refers to a disabled window +-- Dec 16, 2017 10:04:11 AM CET +UPDATE AD_Window SET IsActive='Y', IsBetaFunctionality='N',Updated=TO_TIMESTAMP('2017-12-16 10:04:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=353 +; + +-- Dec 16, 2017 10:04:11 AM CET +UPDATE AD_Menu SET Name='Remuneration', Description='Maintain Remuneration', IsActive='Y',Updated=TO_TIMESTAMP('2017-12-16 10:04:11','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=532 +; + +SELECT register_migration_script('201712161006_IDEMPIERE-1721.sql') FROM dual +; +