规避法规意见收集导出空数据报错问题。

This commit is contained in:
wangzhijiang
2022-10-27 15:49:11 +08:00
parent 625aa37f3d
commit 1b65105f8f
@@ -339,6 +339,9 @@ public class LawsOpinionAssessmentResultEOServiceImpl extends ServiceImpl<LawsOp
}
LawsOpinionGatherEO lawsOpinionGatherEO = lawsOpinionGatherEOService.getById(lawsOpinionAssessmentResultEO.getLawsOpinionGatherId());
if(StringUtils.isEmpty(lawsOpinionGatherEO.getEvaluatorIds())){
return;
}
List<String> evaluatorIdList = Arrays.asList(lawsOpinionGatherEO.getEvaluatorIds().split(","));
List<SysUser> evaluatorUserList = this.sysUserService.querySysUserListByIdList(evaluatorIdList);