Commit 093f75d6 by 周晓航

先放在订单支付成功里 看看调用是否有问题

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent e0ca9516
...@@ -1001,6 +1001,14 @@ public class SellCouponOrderServiceImpl implements OrderFactoryService { ...@@ -1001,6 +1001,14 @@ public class SellCouponOrderServiceImpl implements OrderFactoryService {
request.setRemark("已完成"); request.setRemark("已完成");
OrderBaseResp updateOrderStateResp = orderSdkService.updateOrderState(request, LogThreadLocal.getTrackingNo()); OrderBaseResp updateOrderStateResp = orderSdkService.updateOrderState(request, LogThreadLocal.getTrackingNo());
orderSdkAdapter.convent2BaseOrderResponse(updateOrderStateResp); orderSdkAdapter.convent2BaseOrderResponse(updateOrderStateResp);
// fisherman 直播卖券-> 需要额外上报 时间来不及 有时间 这一块需要移到 异步调用
try {
weChatLiveMsgHandle.reportOrderStatus(orderBean, 0);
}catch (Exception e){
// 不要影响主流程
}
Map<String, Object> map = Maps.newTreeMap(); Map<String, Object> map = Maps.newTreeMap();
map.put("code", 100); map.put("code", 100);
map.put("message", "success"); map.put("message", "success");
......
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