From 2d71a422d107b9fd4a24bdf29e84a47899a1f6de Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Thu, 25 Sep 2014 14:12:08 -0500 Subject: [PATCH] IDEMPIERE-1840 Reference AD_Org Parent WhereClause bug - integrate patch from Jesus Garcia (j2garcia) --- migration/i2.0z/oracle/201409251410_IDEMPIERE-1840.sql | 8 ++++++++ .../i2.0z/postgresql/201409251410_IDEMPIERE-1840.sql | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 migration/i2.0z/oracle/201409251410_IDEMPIERE-1840.sql create mode 100644 migration/i2.0z/postgresql/201409251410_IDEMPIERE-1840.sql diff --git a/migration/i2.0z/oracle/201409251410_IDEMPIERE-1840.sql b/migration/i2.0z/oracle/201409251410_IDEMPIERE-1840.sql new file mode 100644 index 0000000000..a8dac82e55 --- /dev/null +++ b/migration/i2.0z/oracle/201409251410_IDEMPIERE-1840.sql @@ -0,0 +1,8 @@ +-- Mar 20, 2014 10:54:24 AM COT +-- IDEMPIERE-1840 Reference AD_Org Parent WhereClause bug +UPDATE AD_Ref_Table SET WhereClause='AD_Org.IsSummary=''Y''',Updated=TO_DATE('2014-03-20 10:54:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=113 +; + +SELECT register_migration_script('201409251410_IDEMPIERE-1840.sql') FROM dual +; + diff --git a/migration/i2.0z/postgresql/201409251410_IDEMPIERE-1840.sql b/migration/i2.0z/postgresql/201409251410_IDEMPIERE-1840.sql new file mode 100644 index 0000000000..7b38fae0a7 --- /dev/null +++ b/migration/i2.0z/postgresql/201409251410_IDEMPIERE-1840.sql @@ -0,0 +1,8 @@ +-- Mar 20, 2014 10:54:24 AM COT +-- IDEMPIERE-1840 Reference AD_Org Parent WhereClause bug +UPDATE AD_Ref_Table SET WhereClause='AD_Org.IsSummary=''Y''',Updated=TO_TIMESTAMP('2014-03-20 10:54:24','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Reference_ID=113 +; + +SELECT register_migration_script('201409251410_IDEMPIERE-1840.sql') FROM dual +; +