|
@ -314,31 +314,36 @@ public class WorkActUserServiceImpl implements WorkActUserService { |
|
|
@Override |
|
|
@Override |
|
|
public AuditingUserDetailResultDTO queryAuditingUserDetail(AactUserDetailFormDTO formDTO) { |
|
|
public AuditingUserDetailResultDTO queryAuditingUserDetail(AactUserDetailFormDTO formDTO) { |
|
|
ActUserRelationDTO actUserRelationDTO=actUserRelationService.get(formDTO.getActUserRelationId()); |
|
|
ActUserRelationDTO actUserRelationDTO=actUserRelationService.get(formDTO.getActUserRelationId()); |
|
|
|
|
|
if(null==actUserRelationDTO){ |
|
|
|
|
|
return null; |
|
|
|
|
|
} |
|
|
UserBaseInfoResultDTO userBaseInfo=queryUserBaseInfo(actUserRelationDTO.getUserId()); |
|
|
UserBaseInfoResultDTO userBaseInfo=queryUserBaseInfo(actUserRelationDTO.getUserId()); |
|
|
AuditingUserDetailResultDTO resultDTO=new AuditingUserDetailResultDTO(); |
|
|
AuditingUserDetailResultDTO resultDTO=new AuditingUserDetailResultDTO(); |
|
|
//基本信息赋值
|
|
|
//基本信息赋值
|
|
|
resultDTO.setActUserRelationId(actUserRelationDTO.getId()); |
|
|
resultDTO.setActUserRelationId(actUserRelationDTO.getId()); |
|
|
resultDTO.setActId(actUserRelationDTO.getActId()); |
|
|
resultDTO.setActId(actUserRelationDTO.getActId()); |
|
|
resultDTO.setUserId(actUserRelationDTO.getUserId()); |
|
|
resultDTO.setUserId(actUserRelationDTO.getUserId()); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getRealName())) { |
|
|
if(null!=userBaseInfo){ |
|
|
resultDTO.setRealName(userBaseInfo.getRealName()); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getRealName())) { |
|
|
} else { |
|
|
resultDTO.setRealName(userBaseInfo.getRealName()); |
|
|
resultDTO.setRealName(StrConstant.EPMETY_STR); |
|
|
} else { |
|
|
} |
|
|
resultDTO.setRealName(StrConstant.EPMETY_STR); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getGender())) { |
|
|
} |
|
|
resultDTO.setGender(userBaseInfo.getGender()); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getGender())) { |
|
|
} else { |
|
|
resultDTO.setGender(userBaseInfo.getGender()); |
|
|
resultDTO.setGender(StrConstant.EPMETY_STR); |
|
|
} else { |
|
|
} |
|
|
resultDTO.setGender(StrConstant.EPMETY_STR); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getMobile())) { |
|
|
} |
|
|
resultDTO.setMobile(userBaseInfo.getMobile()); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getMobile())) { |
|
|
} else { |
|
|
resultDTO.setMobile(userBaseInfo.getMobile()); |
|
|
resultDTO.setMobile(StrConstant.EPMETY_STR); |
|
|
} else { |
|
|
} |
|
|
resultDTO.setMobile(StrConstant.EPMETY_STR); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getIdNum())) { |
|
|
} |
|
|
resultDTO.setIdNum(userBaseInfo.getIdNum()); |
|
|
if (StringUtils.isNotBlank(userBaseInfo.getIdNum())) { |
|
|
|
|
|
resultDTO.setIdNum(userBaseInfo.getIdNum()); |
|
|
|
|
|
} |
|
|
|
|
|
resultDTO.setAddress(userBaseInfo.getStreet()+userBaseInfo.getDistrict()+userBaseInfo.getBuildingAddress()); |
|
|
} |
|
|
} |
|
|
resultDTO.setAddress(userBaseInfo.getStreet()+userBaseInfo.getDistrict()+userBaseInfo.getBuildingAddress()); |
|
|
|
|
|
resultDTO.setSignUpTime(actUserRelationDTO.getCreatedTime()); |
|
|
resultDTO.setSignUpTime(actUserRelationDTO.getCreatedTime()); |
|
|
/** |
|
|
/** |
|
|
* 当前状态(已报名/待审核auditing, |
|
|
* 当前状态(已报名/待审核auditing, |
|
@ -389,14 +394,16 @@ public class WorkActUserServiceImpl implements WorkActUserService { |
|
|
UserBaseInfoResultDTO userBaseInfoResultDTO=this.queryUserBaseInfo(formDTO.getUserId()); |
|
|
UserBaseInfoResultDTO userBaseInfoResultDTO=this.queryUserBaseInfo(formDTO.getUserId()); |
|
|
//基本信息
|
|
|
//基本信息
|
|
|
resultDTO.setUserId(formDTO.getUserId()); |
|
|
resultDTO.setUserId(formDTO.getUserId()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getHeadImgUrl())){ |
|
|
if(null!=userBaseInfoResultDTO){ |
|
|
resultDTO.setHeadImgUrl(userBaseInfoResultDTO.getHeadImgUrl()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getHeadImgUrl())){ |
|
|
} |
|
|
resultDTO.setHeadImgUrl(userBaseInfoResultDTO.getHeadImgUrl()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getNickname())){ |
|
|
} |
|
|
resultDTO.setNickName(userBaseInfoResultDTO.getNickname()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getNickname())){ |
|
|
} |
|
|
resultDTO.setNickName(userBaseInfoResultDTO.getNickname()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getRealName())){ |
|
|
} |
|
|
resultDTO.setRealName(userBaseInfoResultDTO.getRealName()); |
|
|
if(StringUtils.isNotBlank(userBaseInfoResultDTO.getRealName())){ |
|
|
|
|
|
resultDTO.setRealName(userBaseInfoResultDTO.getRealName()); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
//参与活动统计值
|
|
|
//参与活动统计值
|
|
|
HistoricalActInfo historicalActInfo=getHistoricalActInfo(formDTO.getUserId(),formDTO.getCurrentActId()); |
|
|
HistoricalActInfo historicalActInfo=getHistoricalActInfo(formDTO.getUserId(),formDTO.getCurrentActId()); |
|
|