|
@@ -40,6 +40,9 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
@Autowired
|
|
|
StringUtils stringUtils;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private CfUserrolesMapper cfUserrolesMapper;
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
public PageInfo<HashMap<String, Object>> getCheckNameList(int pageIndex, int pageSize, Integer year, Integer quarter, String dzzdm, String checkUserName, String partyCode, Integer recordStatus) {
|
|
@@ -151,6 +154,39 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
PtChecknamelistExample ckExp = new PtChecknamelistExample();
|
|
|
ckExp.or().andNameidIn(nameIdList);
|
|
|
checknamelistMapper.updateByExampleSelective(record, ckExp);
|
|
|
+
|
|
|
+ // 设置核查人员角色
|
|
|
+ for (String nameId : nameIdList) {
|
|
|
+ PtChecknamelist checknamelist = checknamelistMapper.selectByPrimaryKey(nameId);
|
|
|
+ if (checknamelist != null) {
|
|
|
+ if (recordStatus == 1) {
|
|
|
+ // 启用状态
|
|
|
+ // 查询选择的用户是否有检查人员权限
|
|
|
+ List<HashMap<String, Object>> userInfo = cfUsersCQuery.selectUserAllByUserID(checknamelist.getCheckuserid());
|
|
|
+ if (!userInfo.isEmpty()) {
|
|
|
+ // 查询该用户是否绑定了检查人员角色
|
|
|
+ List<HashMap<String, Object>> roleList = cfUsersCQuery.GetRoleByUserId(checknamelist.getCheckuserid());
|
|
|
+ HashMap<String, Object> jcRole = roleList.stream().filter(it -> it.get("ROLEID").equals("27f0fd61-3107-486f-9240-4f9ef909103e")).findFirst().orElse(null);
|
|
|
+ if (jcRole == null) {
|
|
|
+ // 没有检查人员角色的,绑定一个
|
|
|
+ userService.saveUserRoleList("27f0fd61-3107-486f-9240-4f9ef909103e", checknamelist.getCheckuserid(), false);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ // 禁用状态
|
|
|
+ // 查询该人员是否还有启用状态的记录
|
|
|
+ PtChecknamelistExample example = new PtChecknamelistExample();
|
|
|
+ example.or().andCheckuseridEqualTo(checknamelist.getCheckuserid()).andRecordstatusEqualTo(1);
|
|
|
+ List<PtChecknamelist> list = checknamelistMapper.selectByExample(example);
|
|
|
+ if (list.isEmpty()) {
|
|
|
+ // 所有记录都是禁用,则删除该用户的核查人员角色
|
|
|
+ CfUserrolesExample expUr2 = new CfUserrolesExample();
|
|
|
+ expUr2.or().andUseridEqualTo(checknamelist.getCheckuserid()).andRoleidEqualTo("27f0fd61-3107-486f-9240-4f9ef909103e");
|
|
|
+ cfUserrolesMapper.deleteByExample(expUr2);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
return 1;
|
|
|
}
|
|
|
|
|
@@ -167,23 +203,7 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
@Override
|
|
|
public PageInfo<HashMap<String, Object>> getCheckDataList(int pageIndex, int pageSize, Integer year, String dzzdm, String remark, String roleID, String userid) {
|
|
|
// 如果是核查人员,只允许查询用户核查名单中存在的组织的材料数据
|
|
|
- String dzzdmInStr = null;
|
|
|
- if (!stringUtils.IsNullOrEmpty(roleID) && roleID.equals("27f0fd61-3107-486f-9240-4f9ef909103e")) {
|
|
|
- List<HashMap<String, Object>> checkNameList = checkdataCQuery.selectCheckNameList(null, null, null, null, null, null, userid);
|
|
|
- // 获取党组织代码
|
|
|
- List<String> distinctDzzdmList = checkNameList.stream()
|
|
|
- .map(item -> item.get("partcodes")) // 获取 partcodes 值(可能为单值或多值)
|
|
|
- .filter(Objects::nonNull) // 过滤 null
|
|
|
- .map(Object::toString) // 转为 String
|
|
|
- .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*"))) // 按逗号分割(兼容前后空格)
|
|
|
- .filter(s -> !s.isEmpty()) // 过滤空字符串(防止分割后产生空值)
|
|
|
- .distinct() // 去重
|
|
|
- .collect(Collectors.toList()); // 收集为 List
|
|
|
- if (!distinctDzzdmList.isEmpty()) {
|
|
|
- // 拼接in查询条件
|
|
|
- dzzdmInStr = stringUtils.ListToInSql(distinctDzzdmList);
|
|
|
- }
|
|
|
- }
|
|
|
+ String dzzdmInStr = getDzzdmInStr(roleID, userid);
|
|
|
PageHelper.startPage(pageIndex, pageSize);
|
|
|
List<HashMap<String, Object>> list = checkdataCQuery.selectCheckDataList(year, dzzdm, remark, dzzdmInStr);
|
|
|
|
|
@@ -193,9 +213,10 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public List<HashMap<String, Object>> getCheckDataFleList(String year) {
|
|
|
-
|
|
|
- List<HashMap<String, Object>> list = checkdataCQuery.selectCheckDataFleList(year);
|
|
|
+ public List<HashMap<String, Object>> getCheckDataFleList(String year, String dzzdm, String remark, String roleID, String userid) {
|
|
|
+ // 如果是核查人员,只允许查询用户核查名单中存在的组织的材料数据
|
|
|
+ String dzzdmInStr = getDzzdmInStr(roleID, userid);
|
|
|
+ List<HashMap<String, Object>> list = checkdataCQuery.selectCheckDataFleList(year, dzzdm, remark, dzzdmInStr);
|
|
|
|
|
|
return list;
|
|
|
}
|
|
@@ -227,23 +248,7 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
@Override
|
|
|
public PageInfo<HashMap<String, Object>> getCheckScoreList(int pageIndex, int pageSize, Integer year, Integer quarter, String dzzdm, String checkUserName, Float minScore,Float maxScore,Integer recordStatus,String checkuserid, String roleID, String userid) {
|
|
|
// 如果是核查人员,只允许查询用户核查名单中存在的组织的材料数据
|
|
|
- String dzzdmInStr = null;
|
|
|
- if (!stringUtils.IsNullOrEmpty(roleID) && roleID.equals("27f0fd61-3107-486f-9240-4f9ef909103e")) {
|
|
|
- List<HashMap<String, Object>> checkNameList = checkdataCQuery.selectCheckNameList(null, null, null, null, null, null, userid);
|
|
|
- // 获取党组织代码
|
|
|
- List<String> distinctDzzdmList = checkNameList.stream()
|
|
|
- .map(item -> item.get("partcodes")) // 获取 partcodes 值(可能为单值或多值)
|
|
|
- .filter(Objects::nonNull) // 过滤 null
|
|
|
- .map(Object::toString) // 转为 String
|
|
|
- .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*"))) // 按逗号分割(兼容前后空格)
|
|
|
- .filter(s -> !s.isEmpty()) // 过滤空字符串(防止分割后产生空值)
|
|
|
- .distinct() // 去重
|
|
|
- .collect(Collectors.toList()); // 收集为 List
|
|
|
- if (!distinctDzzdmList.isEmpty()) {
|
|
|
- // 拼接in查询条件
|
|
|
- dzzdmInStr = stringUtils.ListToInSql(distinctDzzdmList);
|
|
|
- }
|
|
|
- }
|
|
|
+ String dzzdmInStr = getDzzdmInStr(roleID, userid);
|
|
|
PageHelper.startPage(pageIndex, pageSize);
|
|
|
List<HashMap<String, Object>> list = checkdataCQuery.selectCheckScoreList( year, quarter, dzzdm, checkUserName, minScore, maxScore, recordStatus,checkuserid,dzzdmInStr);
|
|
|
|
|
@@ -285,4 +290,24 @@ public class CheckDataServiceImpl implements CheckDataService {
|
|
|
example.or().andScoreidEqualTo(scoreId);
|
|
|
return checkquestionMapper.selectByExample(example);
|
|
|
}
|
|
|
+
|
|
|
+ public String getDzzdmInStr(String roleID, String userID) {
|
|
|
+ if (!stringUtils.IsNullOrEmpty(roleID) && roleID.equals("27f0fd61-3107-486f-9240-4f9ef909103e")) {
|
|
|
+ List<HashMap<String, Object>> checkNameList = checkdataCQuery.selectCheckNameList(null, null, null, null, null, 1, userID);
|
|
|
+ // 获取党组织代码
|
|
|
+ List<String> distinctDzzdmList = checkNameList.stream()
|
|
|
+ .map(item -> item.get("partcodes")) // 获取 partcodes 值(可能为单值或多值)
|
|
|
+ .filter(Objects::nonNull) // 过滤 null
|
|
|
+ .map(Object::toString) // 转为 String
|
|
|
+ .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*"))) // 按逗号分割(兼容前后空格)
|
|
|
+ .filter(s -> !s.isEmpty()) // 过滤空字符串(防止分割后产生空值)
|
|
|
+ .distinct() // 去重
|
|
|
+ .collect(Collectors.toList()); // 收集为 List
|
|
|
+ if (!distinctDzzdmList.isEmpty()) {
|
|
|
+ // 拼接in查询条件
|
|
|
+ return stringUtils.ListToInSql(distinctDzzdmList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|