From b5acb53ee2bfa24df71f05bf808317ed416ccc7c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 20 Sep 2023 15:48:58 +0200 Subject: [PATCH] IDEMPIERE-5860 Recent Item of Window Customization is usually empty (#2017) * IDEMPIERE-5860 Recent Item of Window Customization is usually empty * - move to iD10 * - apply the same for Process and Info Window Customization --- .../oracle/202309201029_IDEMPIERE-5860.sql | 18 ++++++++++++++++++ .../postgresql/202309201029_IDEMPIERE-5860.sql | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 migration/iD10/oracle/202309201029_IDEMPIERE-5860.sql create mode 100644 migration/iD10/postgresql/202309201029_IDEMPIERE-5860.sql diff --git a/migration/iD10/oracle/202309201029_IDEMPIERE-5860.sql b/migration/iD10/oracle/202309201029_IDEMPIERE-5860.sql new file mode 100644 index 0000000000..98bd3d2e33 --- /dev/null +++ b/migration/iD10/oracle/202309201029_IDEMPIERE-5860.sql @@ -0,0 +1,18 @@ +-- IDEMPIERE-5860 Recent Item of Window Customization is usually empty +SELECT register_migration_script('202309201029_IDEMPIERE-5860.sql') FROM dual; + +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- Sep 20, 2023, 10:29:54 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_Window_ID@',Updated=TO_TIMESTAMP('2023-09-20 10:29:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=229 +; + +-- Sep 20, 2023, 11:44:54 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_Process_ID@',Updated=TO_TIMESTAMP('2023-09-20 11:44:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=200095 +; + +-- Sep 20, 2023, 11:45:19 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_InfoWindow_ID@',Updated=TO_TIMESTAMP('2023-09-20 11:45:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=200110 +; + diff --git a/migration/iD10/postgresql/202309201029_IDEMPIERE-5860.sql b/migration/iD10/postgresql/202309201029_IDEMPIERE-5860.sql new file mode 100644 index 0000000000..2e0bf7ccf2 --- /dev/null +++ b/migration/iD10/postgresql/202309201029_IDEMPIERE-5860.sql @@ -0,0 +1,15 @@ +-- IDEMPIERE-5860 Recent Item of Window Customization is usually empty +SELECT register_migration_script('202309201029_IDEMPIERE-5860.sql') FROM dual; + +-- Sep 20, 2023, 10:29:54 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_Window_ID@',Updated=TO_TIMESTAMP('2023-09-20 10:29:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=229 +; + +-- Sep 20, 2023, 11:44:54 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_Process_ID@',Updated=TO_TIMESTAMP('2023-09-20 11:44:54','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=200095 +; + +-- Sep 20, 2023, 11:45:19 AM CEST +UPDATE AD_Window SET TitleLogic='@AD_InfoWindow_ID@',Updated=TO_TIMESTAMP('2023-09-20 11:45:19','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Window_ID=200110 +; +