| | |
| | | return returnData(R.SUCCESS.getCode(), orderService.getOrderStatusCount(dto)); |
| | | } |
| | | |
| | | @GetMapping("/abnormal/status/count") |
| | | @ApiOperation(value = "获取异常订单状态数量") |
| | | public ResponseEntity<ReturnDataDTO<List<OrderStatusCountDTO>>> getAbnormalOrderStatusCount(OrderQueryDTO dto){ |
| | | return returnData(R.SUCCESS.getCode(), orderService.getAbnormalOrderStatusCount(dto)); |
| | | } |
| | | |
| | | @GetMapping("/list") |
| | | @ApiOperation(value = "查询订单列表") |
| | | public ResponseEntity<ReturnDataDTO<Page<OrderPlatformListDTO>>> selectOrderList(Page page, OrderQueryDTO dto){ |
| | |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | |
| | | |
| | | @PostMapping("/list/saveDeliveryNo") |
| | | @ApiOperation(value = "没有合伙人的花店上传快递号保存但是不发货") |
| | | public ResponseEntity<ReturnDataDTO> saveDeliveryNoInfo(@RequestBody OrderDeliveryNoDTO dto) { |
| | | orderService.saveDeliveryNoInfo(dto); |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | @GetMapping("/list/abnormal/details") |
| | | @ApiOperation(value = "异常订单明细") |
| | | @ApiImplicitParams({ |