|
@@ -169,13 +169,14 @@ public class DuserServiceImpl implements DuserService {
|
|
|
for (MemberUserRespVO memberUserRespVO : result.getList()) {
|
|
|
//获取团队用户
|
|
|
DuserDO duser = getDuserByUser(memberUserRespVO.getId());
|
|
|
+ if(duser == null) continue;
|
|
|
SocialStatusDO socialStatus = socialStatusService.getSocialStatus(duser.getSocialStatusId());
|
|
|
- if(socialStatus == null) continue;
|
|
|
+// if(socialStatus == null) continue;
|
|
|
memberUserRespVO.setCurrentMemberWorthLevelName(socialStatus.getName());
|
|
|
memberUserRespVO.setCurrentMemberWorthLevel(socialStatus.getLevel());
|
|
|
//获取钱包
|
|
|
IntegralDO integral = integralService.getIntegral(memberUserRespVO.getId());
|
|
|
- if(integral == null) continue;
|
|
|
+// if(integral == null) continue;
|
|
|
memberUserRespVO.setCurrentMemberPoints(integral.getCurrentQuota());
|
|
|
}
|
|
|
return result;
|