|
|
@@ -303,10 +303,13 @@ public class ResumptionServiceImpl implements ResumptionService{
|
|
|
List<ResumptionNFCVo> resumptionNFCVos = resumptionMapper.selectResumptionNFC(resumption.getId(), areaId, resumption.getOrgId());
|
|
|
for (ResumptionNFCVo resumptionNFCVo : resumptionNFCVos) {
|
|
|
Integer status = resumptionNFCVo.getStatus();
|
|
|
+ Map<String, Integer> com = itComMap.get(resumptionNFCVo.getAreaId());
|
|
|
+ com.put("total",com.get("total") + 1);
|
|
|
if(status == 0){
|
|
|
noNFC++;
|
|
|
continue;
|
|
|
}
|
|
|
+ com.put("yes",com.get("yes") + 1);
|
|
|
yesNFC++;
|
|
|
}
|
|
|
nfcs.addAll(resumptionNFCVos);
|