|
|
@ -1697,6 +1697,7 @@ public class AppUserServiceImpl implements AppUserService { |
|
|
|
if (dto.getDeptId() != null) { |
|
|
|
formDTO.setDeptId(Long.parseLong(dto.getAllDeptIds()[dto.getAllDeptIds().length - 2])); |
|
|
|
SysDeptDTO liveDept = adminFeignClient.getDeptInfo(formDTO).getData(); |
|
|
|
log.info("liveDept:{}",liveDept.toString()); |
|
|
|
partyMemberRegistDTO.setLiveAddress(liveDept.getAddress()); |
|
|
|
partyMemberRegistDTO.setLiveCommunity(liveDept.getName()); |
|
|
|
partyMemberRegistDTO.setLiveMobile(liveDept.getMobile()); |
|
|
@ -1709,6 +1710,7 @@ public class AppUserServiceImpl implements AppUserService { |
|
|
|
if (null != dto.getCouplingCommunity()) { |
|
|
|
formDTO.setDeptId(Long.parseLong(dto.getCouplingCommunity()[dto.getCouplingCommunity().length - 2])); |
|
|
|
SysDeptDTO couplingDept = adminFeignClient.getDeptInfo(formDTO).getData(); |
|
|
|
log.info("couplingDept:{}",couplingDept.toString()); |
|
|
|
partyMemberRegistDTO.setCouplingAddress(couplingDept.getAddress()); |
|
|
|
partyMemberRegistDTO.setCouplingCommunity(couplingDept.getName()); |
|
|
|
partyMemberRegistDTO.setCouplingMobile(couplingDept.getMobile()); |
|
|
|