Commit 0345fcae by 周晓航

有数上报 功能位置迁移

parent c3f45d59
......@@ -96,6 +96,8 @@ public class OrderCallBackMQService {
}else{
revert(body);
}
// 有数订单数据上报
sendYoushuReportMQ(body);
}
/**
......@@ -336,4 +338,22 @@ public class OrderCallBackMQService {
return false;
}
/**
* 有数上报MQ
* @param body
*/
private void sendYoushuReportMQ(OrderCallBackRequestVo body) {
try {
if (Objects.isNull(body) || StringUtils.isEmpty(body.getContent())) {
return;
}
// 正常变化 订单正向操作
if (body.getOperateType() == 1 && "1".equals(body.getMsgType())) {
}
}catch (Exception e){
}
}
}
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