|
|
@ -625,10 +625,10 @@ public class IcVaccineServiceImpl extends BaseServiceImpl<IcVaccineDao, IcVaccin |
|
|
|
} |
|
|
|
List<VaccinePieResultDTO> list = baseDao.getVaccinePieData(formDTO); |
|
|
|
list.forEach(item -> { |
|
|
|
if (NumConstant.ZERO_STR.equals(item.getValue())) { |
|
|
|
if (NumConstant.ZERO_STR.equals(item.getCode())) { |
|
|
|
item.setLabel("未接种人数"); |
|
|
|
} else { |
|
|
|
item.setLabel("接种" + item.getValue() + "针人数"); |
|
|
|
item.setLabel("接种" + item.getCode() + "针人数"); |
|
|
|
} |
|
|
|
}); |
|
|
|
return list; |
|
|
|