Commit 2315edc0e1dc1e178ed05a5234682ba683f7d913

Authored by liquanyu
1 parent a38291607c

分娩记录导出

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/MatDeliverController.java View file @ 2315edc
... ... @@ -337,7 +337,7 @@
337 337  
338 338 httpServletResponse.setContentType("application/force-download");
339 339 httpServletResponse.setHeader("Content-Disposition", "attachment;filename=" + new String(("分娩登记表.xls").getBytes("UTF-8"), "ISO-8859-1"));
340   - String path = this.getClass().getResource("/").getPath()+ "fm_record.xlsx";
  340 + String path = this.getClass().getResource("/").getPath()+ "fm_record.xls";
341 341 ExcelUtil.writeWhExclFile(path, httpServletResponse.getOutputStream(), list);
342 342  
343 343 } catch (Exception e) {