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;
}