|
|
@ -284,6 +284,7 @@ public class ActSignInRecordServiceImpl extends BaseServiceImpl<ActSignInRecordD |
|
|
|
if (null != actSignInCodeDTO) { |
|
|
|
resultDTO.setSignInCodeUrl(actSignInCodeDTO.getUrl()); |
|
|
|
} else { |
|
|
|
GroupActInfoDTO groupActInfoDTO=groupActInfoService.getGroupActInfoDTO(actSignInCodeDTO.getGroupActId()); |
|
|
|
//获取AccessToken
|
|
|
|
String accessToken = ThirdUtils.getAccessToken(formDTO.getCustomerId()).getResiToken(); |
|
|
|
if (StringUtils.isBlank(accessToken)) { |
|
|
@ -291,9 +292,8 @@ public class ActSignInRecordServiceImpl extends BaseServiceImpl<ActSignInRecordD |
|
|
|
throw new RenException("获取accessToken失败,customerId:{}", formDTO.getCustomerId()); |
|
|
|
} |
|
|
|
//跳转的页面
|
|
|
|
//todo
|
|
|
|
StringBuilder path = new StringBuilder(ModuleConstant.GROUP_ACT_DETAIL_PAGE); |
|
|
|
path.append("?groupActId=").append(formDTO.getGroupActId()); |
|
|
|
path.append("?groupActId=").append(formDTO.getGroupActId()).append("&groupId=").append(groupActInfoDTO.getGroupId()); |
|
|
|
|
|
|
|
//需要发送的Json
|
|
|
|
JSONObject data = new JSONObject(); |
|
|
|