From 63e17a60e7316bd3aea17b782d65f25ddb5739f4 Mon Sep 17 00:00:00 2001 From: hupeng Date: Sun, 12 Jul 2020 14:32:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BD=A2=E6=88=90=E5=88=86?= =?UTF-8?q?=E9=94=80=E5=85=B3=E7=B3=BB=E7=9A=84=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../co/yixiang/modules/user/service/impl/YxUserServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yshop-mall/src/main/java/co/yixiang/modules/user/service/impl/YxUserServiceImpl.java b/yshop-mall/src/main/java/co/yixiang/modules/user/service/impl/YxUserServiceImpl.java index fef70654..65336ead 100644 --- a/yshop-mall/src/main/java/co/yixiang/modules/user/service/impl/YxUserServiceImpl.java +++ b/yshop-mall/src/main/java/co/yixiang/modules/user/service/impl/YxUserServiceImpl.java @@ -366,7 +366,7 @@ public class YxUserServiceImpl extends BaseServiceImpl imple //如果分销没开启直接返回 String open = systemConfigService.getData(SystemConfigConstants.STORE_BROKERAGE_OPEN); - if(StrUtil.isNotBlank(open) || ShopCommonEnum.ENABLE_2.getValue().toString().equals(open)) return; + if(StrUtil.isBlank(open) || ShopCommonEnum.ENABLE_2.getValue().toString().equals(open)) return; //当前用户信息 YxUser userInfo = this.getById(uid); if(ObjectUtil.isNull(userInfo)) return;