fix
This commit is contained in:
parent
184b530481
commit
9be0394a79
@ -94,7 +94,15 @@ public class AssessManagerController {
|
|||||||
String[] split = flowStart.getGroupIds().split(",");
|
String[] split = flowStart.getGroupIds().split(",");
|
||||||
List<Long> collect = Arrays.asList(split).stream().map(s -> Long.valueOf(s)).collect(Collectors.toList());
|
List<Long> collect = Arrays.asList(split).stream().map(s -> Long.valueOf(s)).collect(Collectors.toList());
|
||||||
List<EvaluationGroup> evaluationGroups = evaluationGroupService.selectEvaluationGroupByIds(collect);
|
List<EvaluationGroup> evaluationGroups = evaluationGroupService.selectEvaluationGroupByIds(collect);
|
||||||
|
if(CollectionUtils.isEmpty(evaluationGroups)){
|
||||||
|
return R.ok();
|
||||||
|
}
|
||||||
|
evaluationGroups.stream().forEach(evaluationGroup -> {
|
||||||
|
List<String> strings = evaluationGroupService.selectAllStaffIdsByGroupId(evaluationGroup.getId());
|
||||||
|
//删除考核任务
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
return R.ok();
|
return R.ok();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -79,4 +79,6 @@ public interface ResultRecordMapper extends BaseMapper<ResultRecord> {
|
|||||||
|
|
||||||
List<ResultRecord> selectResultRankList(@Param("page") IPage page, @Param("req") ChartResultReq req);
|
List<ResultRecord> selectResultRankList(@Param("page") IPage page, @Param("req") ChartResultReq req);
|
||||||
|
|
||||||
|
void
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -105,4 +105,6 @@ public interface ResultRecordService extends IService<ResultRecord> {
|
|||||||
|
|
||||||
List<ChartStatistical> countNumByScoreLevel(AssessDetailReq req);
|
List<ChartStatistical> countNumByScoreLevel(AssessDetailReq req);
|
||||||
|
|
||||||
|
void batchDeleteByStaffIds(List<String> staffIds);
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -741,4 +741,9 @@ public class ResultRecordServiceImpl extends ServiceImpl<ResultRecordMapper, Res
|
|||||||
public List<ChartStatistical> countNumByScoreLevel(AssessDetailReq req) {
|
public List<ChartStatistical> countNumByScoreLevel(AssessDetailReq req) {
|
||||||
return resultRecordMapper.countNumByScoreLevel(req);
|
return resultRecordMapper.countNumByScoreLevel(req);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void batchDeleteByStaffIds(List<String> staffIds) {
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user