| | |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | |
| | | @GetMapping("/callback") |
| | | /*@GetMapping("/callback") |
| | | public ResponseEntity<ReturnDataDTO> callback(String orderId) { |
| | | String originalXml = ""; |
| | | UserPaymentDTO dto = new UserPaymentDTO(); |
| | |
| | | userPaymentV3Service.saveCallbackInfo(dto, Constants.ORDER_STATUS_BACKEND.PAYMENT.name()); |
| | | |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | }*/ |
| | | } |
| | |
| | | @ApiOperation(value = "完成商品质检") |
| | | public ResponseEntity<ReturnDataDTO> setCheckOk(String orderItemId){ |
| | | deliveryOrderService.setCheckOk(orderItemId); |
| | | deliveryOrderService.checkOrderItemStatus(orderItemId); |
| | | return returnData(R.SUCCESS.getCode(), null); |
| | | } |
| | | |