From d7286128bb71773ba232f53dbae73d60009e8084 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 30 Jun 2021 17:22:42 +0200 Subject: [PATCH] IDEMPIERE-4856 Setting an attribute with type reference doesn't work in german / IDEMPIERE-2999 (#752) --- migration/i8.2/oracle/202106301531_IDEMPIERE-4856.sql | 11 +++++++++++ .../i8.2/postgresql/202106301531_IDEMPIERE-4856.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i8.2/oracle/202106301531_IDEMPIERE-4856.sql create mode 100644 migration/i8.2/postgresql/202106301531_IDEMPIERE-4856.sql diff --git a/migration/i8.2/oracle/202106301531_IDEMPIERE-4856.sql b/migration/i8.2/oracle/202106301531_IDEMPIERE-4856.sql new file mode 100644 index 0000000000..c31a2a6928 --- /dev/null +++ b/migration/i8.2/oracle/202106301531_IDEMPIERE-4856.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4856 Setting an attribute with type reference doesn't work in german +-- Jun 30, 2021, 3:29:43 PM CEST +UPDATE AD_Val_Rule SET Code='AD_Reference.AD_Reference_ID IN (10,11,12,13,14,15,16,17,18,19,20,22,24,25,27,29,30,31,32,33,34,36,37,38,39,40)',Updated=TO_DATE('2021-06-30 15:29:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=200090 +; + +SELECT register_migration_script('202106301531_IDEMPIERE-4856.sql') FROM dual +; + diff --git a/migration/i8.2/postgresql/202106301531_IDEMPIERE-4856.sql b/migration/i8.2/postgresql/202106301531_IDEMPIERE-4856.sql new file mode 100644 index 0000000000..9e1af44970 --- /dev/null +++ b/migration/i8.2/postgresql/202106301531_IDEMPIERE-4856.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4856 Setting an attribute with type reference doesn't work in german +-- Jun 30, 2021, 3:29:43 PM CEST +UPDATE AD_Val_Rule SET Code='AD_Reference.AD_Reference_ID IN (10,11,12,13,14,15,16,17,18,19,20,22,24,25,27,29,30,31,32,33,34,36,37,38,39,40)',Updated=TO_TIMESTAMP('2021-06-30 15:29:43','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Val_Rule_ID=200090 +; + +SELECT register_migration_script('202106301531_IDEMPIERE-4856.sql') FROM dual +; +