Commit c189ee18 by 周晓航

Merge branch 'ka-商品技术需求购物车不校验商品库存' into qa

parents 924e0d4f 71c08559
...@@ -2344,7 +2344,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService { ...@@ -2344,7 +2344,7 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
return; return;
} }
List<GetProductStockResponseDto.DataBean> result = availableStocks.getResult(); List<GetProductStockResponseDto.DataBean> result = availableStocks.getResult();
if (CollectionUtils.isNotEmpty(result) || Objects.isNull(result.get(0).getQty())) { if (CollectionUtils.isEmpty(result) || Objects.isNull(result.get(0).getQty())) {
return; return;
} }
if (!ResponseCodeConstant.RESPONSE_SUCCESS_STR.equals(availableStocks.getCode())) { if (!ResponseCodeConstant.RESPONSE_SUCCESS_STR.equals(availableStocks.getCode())) {
......
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