|
@@ -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"))
|
|
|
- .filter(Objects::nonNull)
|
|
|
- .map(Object::toString)
|
|
|
- .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*")))
|
|
|
- .filter(s -> !s.isEmpty())
|
|
|
- .distinct()
|
|
|
- .collect(Collectors.toList());
|
|
|
- if (!distinctDzzdmList.isEmpty()) {
|
|
|
-
|
|
|
- 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"))
|
|
|
- .filter(Objects::nonNull)
|
|
|
- .map(Object::toString)
|
|
|
- .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*")))
|
|
|
- .filter(s -> !s.isEmpty())
|
|
|
- .distinct()
|
|
|
- .collect(Collectors.toList());
|
|
|
- if (!distinctDzzdmList.isEmpty()) {
|
|
|
-
|
|
|
- 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"))
|
|
|
+ .filter(Objects::nonNull)
|
|
|
+ .map(Object::toString)
|
|
|
+ .flatMap(s -> Arrays.stream(s.split("\\s*,\\s*")))
|
|
|
+ .filter(s -> !s.isEmpty())
|
|
|
+ .distinct()
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (!distinctDzzdmList.isEmpty()) {
|
|
|
+
|
|
|
+ return stringUtils.ListToInSql(distinctDzzdmList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|