| | |
| | | */ |
| | | @PostMapping("/cancelShoppingOrderWxRefund") |
| | | public void cancelShoppingOrderWxRefund(HttpServletRequest request) { |
| | | WxRefundNotifyResp data = wxPaymentClient.refundNotify(request).getData(); |
| | | if (null != data) { |
| | | String out_refund_no = data.getOut_refund_no(); |
| | | String refund_id = data.getRefund_id(); |
| | | String tradeState = data.getTradeState(); |
| | | String success_time = data.getSuccess_time(); |
| | | shoppingOrderService.cancelShoppingOrderWxRefund(out_refund_no, refund_id, tradeState, success_time); |
| | | } |
| | | // WxRefundNotifyResp data = wxPaymentClient.refundNotify(request).getData(); |
| | | // if (null != data) { |
| | | // String out_refund_no = data.getOut_refund_no(); |
| | | // String refund_id = data.getRefund_id(); |
| | | // String tradeState = data.getTradeState(); |
| | | // String success_time = data.getSuccess_time(); |
| | | // shoppingOrderService.cancelShoppingOrderWxRefund(out_refund_no, refund_id, tradeState, success_time); |
| | | // } |
| | | } |
| | | |
| | | |