From a1a496d253fb80d5a7790d052228de6a7fec0655 Mon Sep 17 00:00:00 2001 From: sjeffen Date: Thu, 9 May 2019 12:36:38 +0200 Subject: [PATCH] IDEMPIERE-3958 Project Detail Accounting Report parameter error --- .../i6.2/oracle/201905091233_IDEMPIERE-3958.sql | 15 +++++++++++++++ .../postgresql/201905091233_IDEMPIERE-3958.sql | 12 ++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 migration/i6.2/oracle/201905091233_IDEMPIERE-3958.sql create mode 100644 migration/i6.2/postgresql/201905091233_IDEMPIERE-3958.sql diff --git a/migration/i6.2/oracle/201905091233_IDEMPIERE-3958.sql b/migration/i6.2/oracle/201905091233_IDEMPIERE-3958.sql new file mode 100644 index 0000000000..556bd86788 --- /dev/null +++ b/migration/i6.2/oracle/201905091233_IDEMPIERE-3958.sql @@ -0,0 +1,15 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- CPH::ERP Comments: +-- 28. apr. 2019 00.04.12 CEST +UPDATE AD_Process_Para SET AD_Reference_Value_ID=141,Updated=TO_DATE('2019-04-28 00:04:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=363 +; + +-- 1. maj 2019 17.22.57 CEST +UPDATE AD_Column SET AD_Reference_Value_ID=141,Updated=TO_DATE('2019-05-01 17:22:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14091 +; + +SELECT register_migration_script('201905091233_IDEMPIERE-3958.sql') FROM dual +; + diff --git a/migration/i6.2/postgresql/201905091233_IDEMPIERE-3958.sql b/migration/i6.2/postgresql/201905091233_IDEMPIERE-3958.sql new file mode 100644 index 0000000000..6719f17234 --- /dev/null +++ b/migration/i6.2/postgresql/201905091233_IDEMPIERE-3958.sql @@ -0,0 +1,12 @@ +-- CPH::ERP Comments: +-- 28. apr. 2019 00.04.12 CEST +UPDATE AD_Process_Para SET AD_Reference_Value_ID=141,Updated=TO_TIMESTAMP('2019-04-28 00:04:12','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_Para_ID=363 +; + +-- 1. maj 2019 17.22.57 CEST +UPDATE AD_Column SET AD_Reference_Value_ID=141,Updated=TO_TIMESTAMP('2019-05-01 17:22:57','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Column_ID=14091 +; + +SELECT register_migration_script('201905091233_IDEMPIERE-3958.sql') FROM dual +; +