Commit 04329382 by 王祖波

只处理销售单

parent 47faf650
......@@ -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