Commit 1ce3a768 by 周晓航

修改上报订单数据状态

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent 529ac38f
...@@ -108,7 +108,7 @@ public class WeChatLiveMsgHandle { ...@@ -108,7 +108,7 @@ public class WeChatLiveMsgHandle {
OrderDeliverySendRequestVO requestVO = new OrderDeliverySendRequestVO(); OrderDeliverySendRequestVO requestVO = new OrderDeliverySendRequestVO();
requestVO.setOut_order_id(orderId); requestVO.setOut_order_id(orderId);
requestVO.setOpenid(Objects.isNull(openid) ? "" : openid.toString()); requestVO.setOpenid(Objects.isNull(openid) ? "" : openid.toString());
requestVO.setFinish_all_delivery(0); requestVO.setFinish_all_delivery(1);
weChatBaseResponse = weChatClient.orderApply(accessToken, requestVO, WeChatConstant.OrderMethod.ORDER_SEND); weChatBaseResponse = weChatClient.orderApply(accessToken, requestVO, WeChatConstant.OrderMethod.ORDER_SEND);
AppLogUtil.printLog("视频直播发货数据上报-发货", JSON.toJSONString(requestVO), JSON.toJSONString(weChatBaseResponse)); AppLogUtil.printLog("视频直播发货数据上报-发货", JSON.toJSONString(requestVO), JSON.toJSONString(weChatBaseResponse));
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment