| | |
| | | |
| | | @GetMapping("/outExcels") |
| | | @ApiOperation(value = "导出签收统计信息表", notes = "导出签收统计信息表") |
| | | public void export1(OrderStatusCount orderStatusCount, HttpServletResponse response,QueryRequest queryRequest) throws IOException { |
| | | List<OrderStatusCount> orderStatus = this.iSignCountService.signCounts(orderStatusCount,queryRequest).getRecords(); |
| | | public void export1(OrderStatusCount orderStatusCount, HttpServletResponse response) throws IOException { |
| | | List<OrderStatusCount> orderStatus = this.iSignCountService.signCounts2New(orderStatusCount); |
| | | response.setContentType("application/vnd.ms-excel"); |
| | | response.setCharacterEncoding("utf-8"); |
| | | String fileName = URLEncoder.encode("签收数量统计报表", "UTF-8"); |
| | |
| | | IPage<OrderStatusCount> data = this.iSignCountService.signCounts(orderStatusCount,queryRequest); |
| | | return new ResultUtil<IPage<OrderStatusCount>>().setData(data); |
| | | } |
| | | |
| | | @GetMapping(value = "/selectBySignNew") |
| | | public Result<IPage<OrderStatusCount>> signCountsNew(OrderStatusCount orderStatusCount,QueryRequest queryRequest) { |
| | | IPage<OrderStatusCount> data = this.iSignCountService.signCountsNew(orderStatusCount,queryRequest); |
| | | return new ResultUtil<IPage<OrderStatusCount>>().setData(data); |
| | | } |
| | | } |