From cdae126829e9935afdc17b6e33861599286d1db1 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 3 Nov 2020 15:51:54 +0100 Subject: [PATCH] IDEMPIERE-4519 Zk: Implement optional defer rendering for Grid View (#352) Add migration script for the SysConfig key --- .../i7.1z/oracle/202011031550_IDEMPIERE-4519.sql | 11 +++++++++++ .../i7.1z/postgresql/202011031550_IDEMPIERE-4519.sql | 8 ++++++++ 2 files changed, 19 insertions(+) create mode 100644 migration/i7.1z/oracle/202011031550_IDEMPIERE-4519.sql create mode 100644 migration/i7.1z/postgresql/202011031550_IDEMPIERE-4519.sql diff --git a/migration/i7.1z/oracle/202011031550_IDEMPIERE-4519.sql b/migration/i7.1z/oracle/202011031550_IDEMPIERE-4519.sql new file mode 100644 index 0000000000..6181ad6bf7 --- /dev/null +++ b/migration/i7.1z/oracle/202011031550_IDEMPIERE-4519.sql @@ -0,0 +1,11 @@ +SET SQLBLANKLINES ON +SET DEFINE OFF + +-- IDEMPIERE-4519 Zk: Implement optional defer rendering for Grid View +-- Nov 3, 2020, 3:39:40 PM CET +INSERT INTO AD_SysConfig (AD_SysConfig_ID,AD_Client_ID,AD_Org_ID,Created,Updated,CreatedBy,UpdatedBy,IsActive,Name,Value,Description,EntityType,ConfigurationLevel,AD_SysConfig_UU) VALUES (200165,0,0,TO_DATE('2020-11-03 15:39:39','YYYY-MM-DD HH24:MI:SS'),TO_DATE('2020-11-03 15:39:39','YYYY-MM-DD HH24:MI:SS'),100,100,'Y','ZK_GRID_VIEW_USE_DEFER_RENDERING','N','Defer row rendering for grid view','D','C','6a107269-96ba-45f9-9cda-6df7d04c3d3e') +; + +SELECT register_migration_script('202011031550_IDEMPIERE-4519.sql') FROM dual +; + diff --git a/migration/i7.1z/postgresql/202011031550_IDEMPIERE-4519.sql b/migration/i7.1z/postgresql/202011031550_IDEMPIERE-4519.sql new file mode 100644 index 0000000000..84adb6e718 --- /dev/null +++ b/migration/i7.1z/postgresql/202011031550_IDEMPIERE-4519.sql @@ -0,0 +1,8 @@ +-- IDEMPIERE-4519 Zk: Implement optional defer rendering for Grid View +-- Nov 3, 2020, 3:39:40 PM CET +INSERT INTO AD_SysConfig (AD_SysConfig_ID,AD_Client_ID,AD_Org_ID,Created,Updated,CreatedBy,UpdatedBy,IsActive,Name,Value,Description,EntityType,ConfigurationLevel,AD_SysConfig_UU) VALUES (200165,0,0,TO_TIMESTAMP('2020-11-03 15:39:39','YYYY-MM-DD HH24:MI:SS'),TO_TIMESTAMP('2020-11-03 15:39:39','YYYY-MM-DD HH24:MI:SS'),100,100,'Y','ZK_GRID_VIEW_USE_DEFER_RENDERING','N','Defer row rendering for grid view','D','C','6a107269-96ba-45f9-9cda-6df7d04c3d3e') +; + +SELECT register_migration_script('202011031550_IDEMPIERE-4519.sql') FROM dual +; +