This commit is contained in:
杜建超 2020-11-03 16:57:31 +08:00
parent a98c7dc691
commit a7a6d7480e
2 changed files with 5 additions and 1 deletions

View File

@ -81,6 +81,8 @@ public class AssessManagerServiceImpl implements AssessManagerService {
@Autowired @Autowired
private EvaluationGroupMapper evaluationGroupMapper; private EvaluationGroupMapper evaluationGroupMapper;
@Override @Override
public PageUtils assessList(AssessListReq req) { public PageUtils assessList(AssessListReq req) {
List<AssessManagerListRes> data = new ArrayList<>(); List<AssessManagerListRes> data = new ArrayList<>();
@ -268,6 +270,8 @@ public class AssessManagerServiceImpl implements AssessManagerService {
log.error("执行中状态跳过失败 recorId:" + aLong,e); log.error("执行中状态跳过失败 recorId:" + aLong,e);
} }
}); });
//更新flowRecord记录
} }

View File

@ -236,7 +236,7 @@ public class ChartResultServiceImpl implements ChartResultService {
int count = resultRecordService.count(new QueryWrapper<ResultRecord>() int count = resultRecordService.count(new QueryWrapper<ResultRecord>()
.eq("is_delete", 0) .eq("is_delete", 0)
.eq("start_id", startId) .eq("start_id", startId)
.in("department_id",mandepartmentIds)); .in(CollectionUtils.isNotEmpty(mandepartmentIds),"department_id",mandepartmentIds));
ChartStatistical all = new ChartStatistical(); ChartStatistical all = new ChartStatistical();
all.setDesc("参与人数"); all.setDesc("参与人数");