Commit 57abd511 by xiaoer.li@freemud.com

debug

parent c611cdcd
...@@ -80,7 +80,11 @@ public class OrderCallBackMQService { ...@@ -80,7 +80,11 @@ public class OrderCallBackMQService {
//订单状态变更通知开放平台 //订单状态变更通知开放平台
OrderInfoReqs orderInfoReqs = getOrderInfoReqs(body); OrderInfoReqs orderInfoReqs = getOrderInfoReqs(body);
if (orderInfoReqs != null) { if (orderInfoReqs != null) {
orderDistributionService.pushOrder(convent2DisRequest(body, orderInfoReqs.getOrderState())); try {
orderDistributionService.pushOrder(convent2DisRequest(body, orderInfoReqs.getOrderState()));
} catch (Exception e) {
log.info("pushOrder orderCode={},error={}",orderInfoReqs.getOrderCode(),e.getMessage());
}
} }
//微信数据上传(创建新订单&支付成功时上传) //微信数据上传(创建新订单&支付成功时上传)
sendWechatReportMQ(body); sendWechatReportMQ(body);
......
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