|
@@ -66,11 +66,11 @@ public class SysNewsTypeServiceImpl extends BaseServiceImpl<Integer, SysNewsType
|
|
|
public List<SysNewsType> listWithTree(Integer id, String memo,Integer userId,String organIds) {
|
|
|
SysNewsType newsType = sysNewsTypeDao.get(id);
|
|
|
//获取需要排除的用户编号
|
|
|
- String excludeUserIds = sysConfigDao.findConfigValue("excludeUserIds");
|
|
|
+ String excludeUserIds = sysConfigDao.findConfigValue("exclude_user_ids");
|
|
|
String excludeFunctionIds = null;
|
|
|
if(StringUtils.isNotEmpty(excludeUserIds) && excludeUserIds.contains(userId.toString())){
|
|
|
//获取需要排除的功能点编号
|
|
|
- excludeFunctionIds = sysConfigDao.findConfigValue("excludeFunctionIds");
|
|
|
+ excludeFunctionIds = sysConfigDao.findConfigValue("exclude_function_ids");
|
|
|
}
|
|
|
List<SysNewsType> all = sysNewsTypeDao.findAll(null);
|
|
|
String startTime = DateUtil.format(DateUtil.getFirstDayOfMonth(DateUtil.addMonths(new Date(), -1)),DateUtil.ISO_EXPANDED_DATE_FORMAT);
|