| | |
| | | |
| | | ExcelUtil<ServiceSubtaskStatistic> util = new ExcelUtil<ServiceSubtaskStatistic>(ServiceSubtaskStatistic.class); |
| | | |
| | | String sheetName = ""; |
| | | String fileName = ""; |
| | | if (active.equals("ls") || active.equals("druid")) { |
| | | util.exportExcel(response, sfStatistics, LocalDate.now().getMonthValue() + "月出院随访统计表"); |
| | | fileName = sheetName = LocalDate.now().getMonthValue() + "月出院随访统计表"; |
| | | util.exportExcelWithFileName(response, sfStatistics, sheetName, fileName); |
| | | } else { |
| | | util.exportExcel(response, sfStatistics, "随访统计导出"); |
| | | sheetName = "随访统计导出"; |
| | | util.exportExcel(response, sfStatistics, sheetName); |
| | | } |
| | | } |
| | | |