IDEMPIERE-2470:Info Window - ZK_PAGING_SIZE per client
This commit is contained in:
parent
5ca38210e7
commit
22a9ffef6f
|
@ -0,0 +1,9 @@
|
|||
SET SQLBLANKLINES ON
|
||||
SET DEFINE OFF
|
||||
|
||||
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
|
||||
-- Aug 2, 2015 3:17:29 AM WITA
|
||||
UPDATE AD_SysConfig SET ConfigurationLevel='C',Updated=TO_DATE('2015-08-02 03:17:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50018
|
||||
;
|
||||
SELECT register_migration_script('201502081982-IDEMPIERE-2470.sql') FROM dual
|
||||
;
|
|
@ -0,0 +1,6 @@
|
|||
-- I forgot to set the DICTIONARY_ID_COMMENTS System Configurator
|
||||
-- Aug 2, 2015 3:17:29 AM WITA
|
||||
UPDATE AD_SysConfig SET ConfigurationLevel='C',Updated=TO_TIMESTAMP('2015-08-02 03:17:29','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_SysConfig_ID=50018
|
||||
;
|
||||
SELECT register_migration_script('201502081982-IDEMPIERE-2470.sql') FROM dual
|
||||
;
|
|
@ -196,7 +196,7 @@ public abstract class InfoPanel extends Window implements EventListener<Event>,
|
|||
log.log(Level.SEVERE, "Cannot parse context= " + whereClause);
|
||||
}
|
||||
|
||||
pageSize = MSysConfig.getIntValue(MSysConfig.ZK_PAGING_SIZE, DEFAULT_PAGE_SIZE);
|
||||
pageSize = MSysConfig.getIntValue(MSysConfig.ZK_PAGING_SIZE, DEFAULT_PAGE_SIZE, Env.getAD_Client_ID(Env.getCtx()));
|
||||
|
||||
init();
|
||||
|
||||
|
|
Loading…
Reference in New Issue