Commit bbe52fd4 by 王祖波

Merge branch 'feature-recommend' into 'developer'

只处理销售单

See merge request !2792
parents b4ea8800 04329382
......@@ -65,6 +65,10 @@ public class ContactOrderServiceImpl implements ContactOrderService {
logger.info("订单已处理,订单id:{}", orderInfoResp.getOrderId());
return false;
}
if (orderInfoResp.getOrderStatus() == null || orderInfoResp.getOrderStatus() != 1) {
logger.info("订单不是销售单");
return false;
}
logger.info("建联处理订单:{}", orderInfoResp.getOrderId());
Date receiptsDate = orderInfoResp.getReceiptsDate();
Date contactBeginTime = null;
......
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