fix
This commit is contained in:
parent
a98c7dc691
commit
a7a6d7480e
@ -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记录
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -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("参与人数");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user