|
@@ -1,6 +1,8 @@
|
|
|
package cn.newfeifan.mall.sale.service.shop;
|
|
|
|
|
|
+import cn.newfeifan.mall.framework.common.exception.util.ServiceExceptionUtil;
|
|
|
import cn.newfeifan.mall.framework.common.util.json.JsonUtils;
|
|
|
+import cn.newfeifan.mall.module.enums.ErrorCodeConstants;
|
|
|
import cn.newfeifan.mall.module.system.controller.admin.user.vo.user.UserRespVO;
|
|
|
import cn.newfeifan.mall.module.system.dal.dataobject.oauth2.OAuth2AccessTokenDO;
|
|
|
import cn.newfeifan.mall.module.system.dal.dataobject.user.AdminUserDO;
|
|
@@ -29,6 +31,7 @@ import java.util.concurrent.TimeUnit;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import static cn.newfeifan.mall.framework.common.exception.util.ServiceExceptionUtil.exception;
|
|
|
+import static cn.newfeifan.mall.module.enums.ErrorCodeConstants.NO_BANDING;
|
|
|
import static cn.newfeifan.mall.module.enums.ErrorCodeConstants.SHOP_NOT_EXISTS;
|
|
|
|
|
|
/**
|
|
@@ -152,8 +155,11 @@ public class ShopServiceImpl implements ShopService {
|
|
|
|
|
|
@Override
|
|
|
public List<ShopRespVO> getAllShopByUserId(Long loginUserId) {
|
|
|
- ShopDO shopDO = shopMapper.selectById(loginUserId);
|
|
|
- return getMerchantAllShop(shopDO.getMerchantId());
|
|
|
+ AdminUserDO adminUserDO = userMapper.selectById(loginUserId);
|
|
|
+ if (adminUserDO.getMerchantId() == null){
|
|
|
+ throw ServiceExceptionUtil.exception(NO_BANDING);
|
|
|
+ }
|
|
|
+ return getMerchantAllShop(adminUserDO.getMerchantId());
|
|
|
}
|
|
|
|
|
|
}
|