if (allAuthMenus.contains(aConfig[0])) {
dbAccess = "1";
}
if (!dbAccess.equals(aConfig[1])) {
DOAuthorization da = new DOAuthorization();
da.setParterUid(OrgParter.getDefaultEmployee().getObjUid());
da.setOuUid(user.getUid());
da.setWhatType(DOAuthorization.WHAT_UI_MENU);
da.setWhatUid(aConfig[0]);
if (("0".equals(aConfig[1]))) {
da.setAuthority(Boolean.FALSE);
da.setIsInherit(Boolean.TRUE);
} else {
da.setAuthority(Boolean.TRUE);
da.setIsInherit(Boolean.TRUE);
}
DAOUtil.BUSI().store(da);
}
}