Commit f6885d12 by dingkai

围餐获取会员信息

parent cefbd400
...@@ -687,7 +687,7 @@ public class ShoppingCartMealServiceImpl implements ShoppingCartNewService { ...@@ -687,7 +687,7 @@ public class ShoppingCartMealServiceImpl implements ShoppingCartNewService {
getSessionUserInfoDto.setSessionId(sessionId); getSessionUserInfoDto.setSessionId(sessionId);
BaseResponse<CustomerInfoVo> sessionUserInfo = customerApplicationClient.getSessionUserInfo(getSessionUserInfoDto); BaseResponse<CustomerInfoVo> sessionUserInfo = customerApplicationClient.getSessionUserInfo(getSessionUserInfoDto);
if (!ResponseResult.SUCCESS.getCode().equals(sessionUserInfo.getCode()) || sessionUserInfo.getResult() == null) { if (!ResponseResult.SUCCESS.getCode().equals(sessionUserInfo.getCode()) || sessionUserInfo.getResult() == null) {
throw new ServiceException(ResponseResult.NOT_LOGIN); return null;
} }
return sessionUserInfo.getResult(); return sessionUserInfo.getResult();
} }
......
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