陈昶聿
2 天以前 ae99ac8436d476f112d0d4328299d8220eaeb3a8
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/ServiceSubtaskController.java
@@ -419,10 +419,14 @@
        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);
        }
    }