Commit b89d15846ce3021b5a6abfc7304c057081e223ac

Authored by liquanyu
1 parent 268cb9c048

下载

Showing 1 changed file with 1 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/ApplyOrderController.java View file @ b89d158
... ... @@ -97,6 +97,7 @@
97 97 @RequestMapping(method = RequestMethod.GET,value = "/huadaSieveapplyPdf")
98 98 public void addSieveApplyOrder_ftp( @RequestParam(value = "sampleReportId") String sampleReportId,
99 99 HttpServletRequest request, HttpServletResponse response) {
  100 + response.setContentType("application/octet-stream");
100 101 applyOrderFacade.huadaFtp(sampleReportId, response);
101 102 }
102 103