From 09e7bf992c619c45af7a8128da9f1aa035922b2e Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 18 Sep 2019 18:40:30 +0200 Subject: [PATCH] IDEMPIERE-4050 Minor bug: spelling error in report Invoice Transactions (Doc) --- .../i6.2z/oracle/201909181839_IDEMPIERE-4050.sql | 11 +++++++++++ .../i6.2z/postgresql/201909181839_IDEMPIERE-4050.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i6.2z/oracle/201909181839_IDEMPIERE-4050.sql create mode 100644 migration/i6.2z/postgresql/201909181839_IDEMPIERE-4050.sql diff --git a/migration/i6.2z/oracle/201909181839_IDEMPIERE-4050.sql b/migration/i6.2z/oracle/201909181839_IDEMPIERE-4050.sql new file mode 100644 index 0000000000..d91cc35946 --- /dev/null +++ b/migration/i6.2z/oracle/201909181839_IDEMPIERE-4050.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4050 Minor bug: spelling error in report Invoice Transactions (Doc) +-- Sep 18, 2019, 6:39:20 PM CEST +UPDATE AD_Process SET Help='The report lists the invoice transactions by invoice date',Updated=TO_DATE('2019-09-18 18:39:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=151 +; + +SELECT register_migration_script('201909181839_IDEMPIERE-4050.sql') FROM dual +; + diff --git a/migration/i6.2z/postgresql/201909181839_IDEMPIERE-4050.sql b/migration/i6.2z/postgresql/201909181839_IDEMPIERE-4050.sql new file mode 100644 index 0000000000..604629eb51 --- /dev/null +++ b/migration/i6.2z/postgresql/201909181839_IDEMPIERE-4050.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4050 Minor bug: spelling error in report Invoice Transactions (Doc) +-- Sep 18, 2019, 6:39:20 PM CEST +UPDATE AD_Process SET Help='The report lists the invoice transactions by invoice date',Updated=TO_TIMESTAMP('2019-09-18 18:39:20','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Process_ID=151 +; + +SELECT register_migration_script('201909181839_IDEMPIERE-4050.sql') FROM dual +; +