|
|
|
@ -314,7 +314,7 @@ public class SupProductController {
|
|
|
|
|
return ResultVOUtils.error(500, "必传证书不齐全");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String msg="";
|
|
|
|
|
// 查询是否包含审核未通过的证书
|
|
|
|
|
if (supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_PASS ||
|
|
|
|
|
supProductEntity.getAuditStatus() == ConstantStatus.AUDIT_CHANGE_PASS) {
|
|
|
|
@ -327,11 +327,9 @@ public class SupProductController {
|
|
|
|
|
List<SupCertEntity> supCertEntityList = supCertService.filterCompanyCert(filterSupCertRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(supCertEntityList)) {
|
|
|
|
|
for (SupCertEntity supCertEntity : supCertEntityList) {
|
|
|
|
|
supCertEntity.setAuditStatus(ConstantStatus.AUDIT_PASS);
|
|
|
|
|
supCertService.updateCompanyCert(supCertEntity);
|
|
|
|
|
msg+=supCertEntity.getName()+",";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// return ResultVOUtils.error(500, "审核失败,剩余" + supCertEntityList.size() + "个证书还未审核或审核未通过!");
|
|
|
|
|
return ResultVOUtils.error(500, "审核失败,还有" + msg.substring(0,msg.length()-1) + "证书还未确认!");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|