Commit c97f7215 by chongfu.liang

Merge branch 'feature/2.0.4-修改支持的订单类型' into qa

parents 8360d19b e877927c
...@@ -170,9 +170,10 @@ public class DeliveryHandle { ...@@ -170,9 +170,10 @@ public class DeliveryHandle {
//订单来源异常 //订单来源异常
String[] supportSource = supportOrderSource.split(","); // OrderSourceType.SAAS.getCode() String[] supportSource = supportOrderSource.split(","); // OrderSourceType.SAAS.getCode()
for (String source : supportSource){ for (String source : supportSource){
if (!orderBean.getSource().equalsIgnoreCase(source)) { if (orderBean.getSource().equalsIgnoreCase(source)) {
return false; break;
} }
return false;
} }
//配送信息为空,则不创建配送单 //配送信息为空,则不创建配送单
if (orderBean.getAddInfo() == null || orderBean.getAddInfo().getDeliveryType() == null) { if (orderBean.getAddInfo() == null || orderBean.getAddInfo().getDeliveryType() == 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