IDEMPIERE-5000 Window Customization Field does not show fields that are not displayed in the Window>Tab>Field sytem record (#922)
This commit is contained in:
parent
6dd60f30c7
commit
c9354bca85
|
@ -117,9 +117,7 @@ public class GridFieldVO implements Serializable, Cloneable
|
|||
}
|
||||
// FR IDEMPIERE-177
|
||||
// Field Customization
|
||||
if (vo.IsDisplayed) {
|
||||
MUserDefField userDef = null;
|
||||
userDef = MUserDefField.get(vo.ctx,vo.AD_Field_ID, vo.AD_Tab_ID, vo.AD_Window_ID);
|
||||
MUserDefField userDef = MUserDefField.get(vo.ctx,vo.AD_Field_ID, vo.AD_Tab_ID, vo.AD_Window_ID);
|
||||
if (userDef != null)
|
||||
{
|
||||
if (userDef.getName() != null)
|
||||
|
@ -201,7 +199,6 @@ public class GridFieldVO implements Serializable, Cloneable
|
|||
if (userDef.getIsAutocomplete() != null)
|
||||
vo.IsAutocomplete = "Y".equals(userDef.getIsAutocomplete());
|
||||
}
|
||||
}
|
||||
//
|
||||
vo.initFinish();
|
||||
return vo;
|
||||
|
|
Loading…
Reference in New Issue