diff --git a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java index 52f78218..e5c1a698 100644 --- a/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java +++ b/mall-shop/src/main/java/com/suisung/mall/shop/store/service/impl/ShopStoreBaseServiceImpl.java @@ -272,13 +272,9 @@ public class ShopStoreBaseServiceImpl extends BaseServiceImpl shopStoreInfos = store_info_rows.stream().filter(r -> ObjectUtil.equal(r.getStore_id(), store_id)).findFirst(); - if (shopStoreInfos.isPresent()) { + if (shopStoreInfos.isPresent()) { // 匹配到店铺信息 ShopStoreInfo shopStoreInfo = shopStoreInfos.orElseGet(ShopStoreInfo::new); Map map = Convert.toMap(Object.class, Object.class, shopStoreInfo); - // 店铺是否自配送? -// s.put("is_delivery_self", s.getOrDefault("is_delivery_self", CommonConstant.Disable2)); -// // 店铺内部配送费 -// s.put("shopping_fee_inner", s.getOrDefault("shopping_fee_inner", 0)); s.putAll(map); }