|
|
|
@ -759,10 +759,15 @@ public class AppUserServiceImpl implements AppUserService { |
|
|
|
epdcAppUserRegisterFormDTO.setWxCode(formDto.getWxCode()); |
|
|
|
Result<EpdcAppAuthorizationDTO> maV2Token = this.getMaV2Token(epdcAppUserRegisterFormDTO); |
|
|
|
// 注册埋点
|
|
|
|
PointLogFormDTO pointLogFormDTO = new PointLogFormDTO(); |
|
|
|
pointLogFormDTO.setType(BehaviorEnum.POINTS_REGISTER_RULES.getValue()); |
|
|
|
pointLogFormDTO.setUserId(maV2Token.getData().getUserId()); |
|
|
|
pointFeignClient.updataPoint(pointLogFormDTO); |
|
|
|
if (maV2Token.success()) { |
|
|
|
PointLogFormDTO pointLogFormDTO = new PointLogFormDTO(); |
|
|
|
pointLogFormDTO.setType(BehaviorEnum.POINTS_REGISTER_RULES.getValue()); |
|
|
|
pointLogFormDTO.setUserId(maV2Token.getData().getUserId()); |
|
|
|
pointFeignClient.updataPoint(pointLogFormDTO); |
|
|
|
} else { |
|
|
|
log.error("报错:"+maV2Token.getMsg() + "-" + maV2Token.toString()); |
|
|
|
} |
|
|
|
|
|
|
|
return maV2Token; |
|
|
|
} |
|
|
|
|
|
|
|
|