|
|
@ -242,7 +242,7 @@ public class VaccinationInfoServiceImpl extends BaseVimCurdServiceImpl<Vaccinati |
|
|
|
if (StringUtils.isNotBlank(vaccineName)) { |
|
|
|
List<VaccineDto> company = companyList.stream().filter(item -> companyName.equals(item.getLabel())).collect(Collectors.toList()); |
|
|
|
if (company.size() > 0) { |
|
|
|
epidemicReportUserInfoAllExcel.setVaccineId(company.get(0).getValue()); |
|
|
|
epidemicReportUserInfoAllExcel.setCompanyId(company.get(0).getValue()); |
|
|
|
maxDose = company.get(0).getMaxDose(); |
|
|
|
} else { |
|
|
|
checkInfo += "第" + (i + 1) + "条、"; |
|
|
@ -262,7 +262,7 @@ public class VaccinationInfoServiceImpl extends BaseVimCurdServiceImpl<Vaccinati |
|
|
|
if (StringUtils.isNotBlank(vaccineName)) { |
|
|
|
List<VaccineDto> site = siteList.stream().filter(item -> siteName.equals(item.getLabel())).collect(Collectors.toList()); |
|
|
|
if (site.size() > 0) { |
|
|
|
epidemicReportUserInfoAllExcel.setVaccineId(site.get(0).getValue()); |
|
|
|
epidemicReportUserInfoAllExcel.setSiteId(site.get(0).getValue()); |
|
|
|
} else { |
|
|
|
checkInfo += "第" + (i + 1) + "条、"; |
|
|
|
epidemicReportUserInfoAllExcel.setErrorInfo("不存在的疫苗接种点"); |
|
|
|