fix
This commit is contained in:
parent
a98c7dc691
commit
a7a6d7480e
@ -81,6 +81,8 @@ public class AssessManagerServiceImpl implements AssessManagerService {
|
||||
@Autowired
|
||||
private EvaluationGroupMapper evaluationGroupMapper;
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public PageUtils assessList(AssessListReq req) {
|
||||
List<AssessManagerListRes> data = new ArrayList<>();
|
||||
@ -268,6 +270,8 @@ public class AssessManagerServiceImpl implements AssessManagerService {
|
||||
log.error("执行中状态跳过失败 recorId:" + aLong,e);
|
||||
}
|
||||
});
|
||||
//更新flowRecord记录
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -236,7 +236,7 @@ public class ChartResultServiceImpl implements ChartResultService {
|
||||
int count = resultRecordService.count(new QueryWrapper<ResultRecord>()
|
||||
.eq("is_delete", 0)
|
||||
.eq("start_id", startId)
|
||||
.in("department_id",mandepartmentIds));
|
||||
.in(CollectionUtils.isNotEmpty(mandepartmentIds),"department_id",mandepartmentIds));
|
||||
|
||||
ChartStatistical all = new ChartStatistical();
|
||||
all.setDesc("参与人数");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user