Compiere Active不打勾时不禁用录入控件

修改GridField.isEditable(boolean)方法:
// Record is not Active
if (checkContext && !Env.getContext(m_vo.ctx, m_vo.WindowNo, "IsActive").equals("Y"))
{  
  if (/*自定义判断*/)
    return true;    // 返回true,不禁用录入控件
  else
    return false;
}


通过 Wiz 发布


posted on 2011-12-01 16:02  windboy03  阅读(168)  评论(0编辑  收藏  举报