Browse Source

评审清单

master
PoffyZhang 10 months ago
parent
commit
d04db8761a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/manage/ReviewChecklistManage.java

+ 2
- 1
pmapi/src/main/java/com/ningdatech/pmapi/projectdeclared/manage/ReviewChecklistManage.java View File

@@ -138,7 +138,9 @@ public class ReviewChecklistManage {
Integer maxNums = reviewHumans.size();
final Integer[] finishNums = {DeclaredProjectContant.ReviewChecklist.INIT_NUM};
Set<String> computeHumanSet = reviewHumans.stream().collect(Collectors.toSet());

if(CollUtil.isEmpty(reviewChecklistApproves)){
item.setReviewCheckNotApprove(convertUser(userMap,computeHumanSet));
return finishNums[0] + StrPool.SLASH + maxNums;
}
reviewChecklistApproves.forEach(r -> {
@@ -149,7 +151,6 @@ public class ReviewChecklistManage {
computeHumanSet.remove(r.getCreateByCode());
}
});

item.setReviewCheckNotApprove(convertUser(userMap,computeHumanSet));

return finishNums[0] + StrPool.SLASH + maxNums;


Loading…
Cancel
Save