Commit 9e0200bfee48f0b5e62f5ce3f18037617cc8d608
Exists in
master
and in
8 other branches
Merge remote-tracking branch 'origin/master'
Showing 1 changed file
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java
View file @
9e0200b
... | ... | @@ -13,6 +13,7 @@ |
13 | 13 | import com.lyms.platform.common.result.BaseResponse; |
14 | 14 | import com.lyms.platform.common.utils.DateUtil; |
15 | 15 | import com.lyms.platform.common.utils.ExcelUtil; |
16 | +import com.lyms.platform.common.utils.ExceptionUtils; | |
16 | 17 | import com.lyms.platform.common.utils.JsonUtil; |
17 | 18 | import com.lyms.platform.operate.web.request.ChanQianDiaAddRequest; |
18 | 19 | import com.lyms.platform.operate.web.request.CqSieveQueryRequest; |
... | ... | @@ -291,7 +292,7 @@ |
291 | 292 | response.setHeader("Content-Disposition", "attachment;fileName=" + "csdata.xls"); |
292 | 293 | ExcelUtil.toExcel(out, datas, cnames); |
293 | 294 | } catch (Exception e) { |
294 | - | |
295 | + ExceptionUtils.catchException(e,"产筛导出异常"); | |
295 | 296 | } |
296 | 297 | } |
297 | 298 |