IDEMPIERE-3685 Client field is shown empty in Included Roles grid mode
This commit is contained in:
parent
9c5045333e
commit
c3727c2f10
|
@ -0,0 +1,11 @@
|
|||
SET SQLBLANKLINES ON
|
||||
SET DEFINE OFF
|
||||
|
||||
-- IDEMPIERE-3685
|
||||
-- Apr 12, 2018 4:51:48 PM CEST
|
||||
UPDATE AD_Tab SET WhereClause='(AD_Field.IsDisplayed=''Y'' OR AD_Field.IsDisplayedGrid=''Y'')', OrderByClause='AD_Field.SeqNo, AD_Field.SeqNoGrid',Updated=TO_DATE('2018-04-12 16:51:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=107
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201804121657_IDEMPIERE-3685.sql') FROM dual
|
||||
;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
-- IDEMPIERE-3685
|
||||
-- Apr 12, 2018 4:51:48 PM CEST
|
||||
UPDATE AD_Tab SET WhereClause='(AD_Field.IsDisplayed=''Y'' OR AD_Field.IsDisplayedGrid=''Y'')', OrderByClause='SeqNo, SeqNoGrid',Updated=TO_TIMESTAMP('2018-04-12 16:51:48','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=100 WHERE AD_Tab_ID=107
|
||||
;
|
||||
|
||||
SELECT register_migration_script('201804121657_IDEMPIERE-3685.sql') FROM dual
|
||||
;
|
||||
|
|
@ -567,7 +567,7 @@ public class GridTabRowRenderer implements RowRenderer<Object[]>, RowRendererExt
|
|||
}
|
||||
|
||||
GridRowCtx ctx = new GridRowCtx(Env.getCtx(), gridTab, rowIndex);
|
||||
if (!gridPanelFields[i].isDisplayed(ctx, true)){
|
||||
if (! (gridPanelFields[i].isDisplayed(ctx, true) || gridPanelFields[i].isDisplayedGrid())){
|
||||
// IDEMPIERE-2253
|
||||
component.setVisible(false);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue