|
@@ -97,9 +97,10 @@ public class BuildingOwnerInfoImpl implements IBuildingOwnerInfo {
|
97
|
97
|
public ResponseBean hasBuild(UserElement userElement, Integer communityId ,Integer phaseId, Integer buildingId, Integer unitId, Integer levelId, Integer roomNoId) {
|
98
|
98
|
ResponseBean responseBean = new ResponseBean();
|
99
|
99
|
// 1.检验该用户关联有没有这个 户号
|
100
|
|
- List<TaUserVerify> taUserVerify = taUserVerifyMapper.selectCommunityAndAddress(userElement.getId(),userElement.getCommunityId(), phaseId, buildingId, unitId, levelId, roomNoId, 1);
|
|
100
|
+// List<TaUserVerify> taUserVerify = taUserVerifyMapper.selectCommunityAndAddress(userElement.getId(),userElement.getCommunityId(), phaseId, buildingId, unitId, levelId, roomNoId, 1);
|
|
101
|
+ List<TaUserVerify> taUserVerify = taUserVerifyMapper.selectCommunityAndAddressAndNotVerifyStatus2(userElement.getId(),userElement.getCommunityId(), phaseId, buildingId, unitId, levelId, roomNoId);
|
101
|
102
|
if (null != taUserVerify && taUserVerify.size() > 0) {
|
102
|
|
- responseBean.addError("您已关联此房产,无法再次关联!");
|
|
103
|
+ responseBean.addError("您已提交了这个房产的审核!请等待户主或者物业审核后,在进行下一步操作!");
|
103
|
104
|
return responseBean;
|
104
|
105
|
}
|
105
|
106
|
|