|
|
@ -40,8 +40,7 @@ public class EpidemicUserInfoExportServer implements IExcelExportServer { |
|
|
|
|
|
|
|
String grids = (String) params.get("deptIdList"); |
|
|
|
String agencyList = (String) params.get("agencyList"); |
|
|
|
params.put("deptIdList",null); |
|
|
|
params.put("agencyList",null); |
|
|
|
|
|
|
|
if(StringUtils.isNotBlank(grids)){ |
|
|
|
List<String> gridList = Arrays.asList(grids.split(",")); |
|
|
|
params.put("gridList",gridList); |
|
|
@ -59,6 +58,10 @@ public class EpidemicUserInfoExportServer implements IExcelExportServer { |
|
|
|
params.put("deptIdList", user.getDeptIdList()); |
|
|
|
} |
|
|
|
List<EpidemicRecordListDTO> recordList = epidemicUserInfoDao.getEpidemicUserRecordList(params); |
|
|
|
|
|
|
|
params.put("deptIdList",null); |
|
|
|
params.put("agencyList",null); |
|
|
|
|
|
|
|
List<Object> targetList = new ArrayList<>(); |
|
|
|
if (CollUtil.isNotEmpty(recordList)) { |
|
|
|
Object target; |
|
|
|