|
@ -279,10 +279,16 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi |
|
|
//查询房屋信息
|
|
|
//查询房屋信息
|
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(tokenDto.getCustomerId(), map.get("HOME_ID")); |
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(tokenDto.getCustomerId(), map.get("HOME_ID")); |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
String address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
String address; |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
if (StringUtils.isNotBlank(gridInfo.getAllParentName())) { |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
partyMemberDTO.setAddress(address); |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} else { |
|
|
|
|
|
address = gridInfo.getGridNamePath() |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
//2022.05.18 end zhaoqf
|
|
|
//2022.05.18 end zhaoqf
|
|
@ -499,9 +505,16 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi |
|
|
} |
|
|
} |
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(tokenDto.getCustomerId(), houseId); |
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(tokenDto.getCustomerId(), houseId); |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
String address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
String address; |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
if (StringUtils.isNotBlank(gridInfo.getAllParentName())) { |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} else { |
|
|
|
|
|
address = gridInfo.getGridNamePath() |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} |
|
|
partyMemberDTO.setAddress(address); |
|
|
partyMemberDTO.setAddress(address); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -2191,9 +2204,16 @@ public class IcResiUserServiceImpl extends BaseServiceImpl<IcResiUserDao, IcResi |
|
|
//查询房屋信息
|
|
|
//查询房屋信息
|
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(formDTO.getCustomerId(), entity.getHomeId()); |
|
|
HouseInfoCache houseInfo = CustomerIcHouseRedis.getHouseInfo(formDTO.getCustomerId(), entity.getHomeId()); |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
if (null != gridInfo && null != houseInfo) { |
|
|
String address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
String address; |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
if (StringUtils.isNotBlank(gridInfo.getAllParentName())) { |
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
address = gridInfo.getAllParentName().concat(StrConstant.HYPHEN).concat(gridInfo.getGridNamePath()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} else { |
|
|
|
|
|
address = gridInfo.getGridNamePath() |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getNeighborHoodName()) |
|
|
|
|
|
.concat(StrConstant.HYPHEN).concat(houseInfo.getHouseName()); |
|
|
|
|
|
} |
|
|
result.setAddress(address); |
|
|
result.setAddress(address); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|