From 05261fa747333e50ad866158a912e5dc99c50519 Mon Sep 17 00:00:00 2001 From: Layda Salas Date: Sat, 12 Feb 2022 07:09:06 +0100 Subject: [PATCH] IDEMPIERE-4788 Spelling mistake menu "Accounting Fact Reconcilation (manual)". Correct to "Reconciliation" #resolve (#1179) --- .../iD10/oracle/202202111643_IDEMPIERE-4788.sql | 12 ++++++++++++ .../iD10/postgresql/202202111643_IDEMPIERE-4788.sql | 9 +++++++++ 2 files changed, 21 insertions(+) create mode 100644 migration/iD10/oracle/202202111643_IDEMPIERE-4788.sql create mode 100644 migration/iD10/postgresql/202202111643_IDEMPIERE-4788.sql diff --git a/migration/iD10/oracle/202202111643_IDEMPIERE-4788.sql b/migration/iD10/oracle/202202111643_IDEMPIERE-4788.sql new file mode 100644 index 0000000000..9ec795637f --- /dev/null +++ b/migration/iD10/oracle/202202111643_IDEMPIERE-4788.sql @@ -0,0 +1,12 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Feb 11, 2022, 4:40:02 PM CET +UPDATE AD_Form SET Name='Accounting Fact Reconciliation (manual)',Updated=TO_DATE('2022-02-11 16:40:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=53016 +; + +-- Feb 11, 2022, 4:40:03 PM CET +UPDATE AD_Menu SET Name='Accounting Fact Reconciliation (manual)', Description=NULL, IsActive='Y',Updated=TO_DATE('2022-02-11 16:40:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=53289 +; + +SELECT register_migration_script('202202111643_IDEMPIERE-4788.sql') FROM dual; diff --git a/migration/iD10/postgresql/202202111643_IDEMPIERE-4788.sql b/migration/iD10/postgresql/202202111643_IDEMPIERE-4788.sql new file mode 100644 index 0000000000..23f6782496 --- /dev/null +++ b/migration/iD10/postgresql/202202111643_IDEMPIERE-4788.sql @@ -0,0 +1,9 @@ +-- Feb 11, 2022, 4:40:02 PM CET +UPDATE AD_Form SET Name='Accounting Fact Reconciliation (manual)',Updated=TO_TIMESTAMP('2022-02-11 16:40:02','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Form_ID=53016 +; + +-- Feb 11, 2022, 4:40:03 PM CET +UPDATE AD_Menu SET Name='Accounting Fact Reconciliation (manual)', Description=NULL, IsActive='Y',Updated=TO_TIMESTAMP('2022-02-11 16:40:03','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Menu_ID=53289 +; + +SELECT register_migration_script('202202111643_IDEMPIERE-4788.sql') FROM dual;