Sfoglia il codice sorgente

商家配送不需要快递单号

liangpeile 1 anno fa
parent
commit
03e8838529

+ 6 - 5
crmeb-service/src/main/java/com/zbkj/service/service/impl/OrderServiceImpl.java

@@ -1408,11 +1408,12 @@ public class OrderServiceImpl extends ServiceImpl<OrderDao, Order> implements Or
                 return;
             }
         }
-        if (StrUtil.isBlank(request.getExpressCode())) throw new CrmebException("请选择快递公司");
-        if (StrUtil.isBlank(request.getExpressTempId())) throw new CrmebException("请选择电子面单");
-        if (StrUtil.isBlank(request.getToName())) throw new CrmebException("请填写寄件人姓名");
-        if (StrUtil.isBlank(request.getToTel())) throw new CrmebException("请填写寄件人电话");
-        if (StrUtil.isBlank(request.getToAddr())) throw new CrmebException("请填写寄件人地址");
+        return;
+//        if (StrUtil.isBlank(request.getExpressCode())) throw new CrmebException("请选择快递公司");
+//        if (StrUtil.isBlank(request.getExpressTempId())) throw new CrmebException("请选择电子面单");
+//        if (StrUtil.isBlank(request.getToName())) throw new CrmebException("请填写寄件人姓名");
+//        if (StrUtil.isBlank(request.getToTel())) throw new CrmebException("请填写寄件人电话");
+//        if (StrUtil.isBlank(request.getToAddr())) throw new CrmebException("请填写寄件人地址");
     }
 
     /**