Commit 65cdc01389c04fcc3fb1c4231951c535a026237c
1 parent
45372cdf
update:修改判断条件
Showing
1 changed file
with
1 additions
and
1 deletions
etrade-order/src/main/java/com/diligrp/etrade/order/service/impl/OrderServiceImpl.java
... | ... | @@ -1083,7 +1083,7 @@ public class OrderServiceImpl implements OrderService { |
1083 | 1083 | throw new OrderException(OrderErrorCode.PARAM_ERROR,"当前商家暂不支持配送"); |
1084 | 1084 | } |
1085 | 1085 | } |
1086 | - if(shopExpressVo.getFee()!=null){ | |
1086 | + if(shopExpressVo.getFee()==null){ | |
1087 | 1087 | return transportFeeDto; |
1088 | 1088 | } |
1089 | 1089 | if(CollectionUtils.isNotEmpty(shopExpressVo.getCondition())){ | ... | ... |