|
@@ -987,7 +987,7 @@ public class BuildingServiceImpl implements BuildingService {
|
|
|
//查询权限的场景ids
|
|
|
List<Integer> channelIds = channelService.getUserChannelIds(loginUser);
|
|
|
|
|
|
- List<BuildingInfoListDto> list = buildingMapper.getBuildingStatistics(siteList, UserUtil.getCurrentSiteProgramItems(loginUser), sysId, buildingId, buildingName, province, city, region, null, 0, null, null, null, null);
|
|
|
+ List<BuildingInfoListDto> list = buildingMapper.getBuildingStatistics(siteList, UserUtil.getCurrentSiteProgramItems(loginUser), sysId, buildingId, buildingName, province, city, region, null, 0, null, null, null, null, UserUtil.getCustomerIds());
|
|
|
return list;
|
|
|
}
|
|
|
|
|
@@ -1000,7 +1000,7 @@ public class BuildingServiceImpl implements BuildingService {
|
|
|
List<Integer> buildingIds = this.getIdsByDataPermissionMultiSite();
|
|
|
//查询权限的场景ids
|
|
|
List<Integer> channelIds = channelService.getUserChannelIdsByMultiSite(loginUser);
|
|
|
- return buildingMapper.getBuildingStatistics(siteList, UserUtil.getCurrentSiteProgramItems(loginUser), sysId, buildingId, buildingName, province, city, region, null, 0, null, null, null, null);
|
|
|
+ return buildingMapper.getBuildingStatistics(siteList, UserUtil.getCurrentSiteProgramItems(loginUser), sysId, buildingId, buildingName, province, city, region, null, 0, null, null, null, null, UserUtil.getCustomerIds());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -1031,8 +1031,15 @@ public class BuildingServiceImpl implements BuildingService {
|
|
|
throw new ServiceException(-900, "建筑名称已经存在");
|
|
|
}
|
|
|
|
|
|
+ Community community = communityMapper.findById(building.getCommunity());
|
|
|
if(building.getProvince() == null || building.getProvince() == 0){
|
|
|
- throw new ServiceException(-900, "获取省市区编码错误,请重新输入");
|
|
|
+ building.setProvince(community.getProvince());
|
|
|
+ }
|
|
|
+ if(building.getCity() == null || building.getCity() == 0){
|
|
|
+ building.setCity(community.getCity());
|
|
|
+ }
|
|
|
+ if(building.getRegion() == null || building.getRegion() == 0){
|
|
|
+ building.setRegion(community.getRegion());
|
|
|
}
|
|
|
building.setSiteId(loginUser.getSiteId());
|
|
|
building.setStatus(1);
|
|
@@ -1088,8 +1095,15 @@ public class BuildingServiceImpl implements BuildingService {
|
|
|
if (nameResult > 0) {
|
|
|
throw new ServiceException(-900, "建筑名称已经存在");
|
|
|
}
|
|
|
+ Community community = communityMapper.findById(building.getCommunity());
|
|
|
if(building.getProvince() == null || building.getProvince() == 0){
|
|
|
- throw new ServiceException(-900, "获取省市区编码错误,请重新输入");
|
|
|
+ building.setProvince(community.getProvince());
|
|
|
+ }
|
|
|
+ if(building.getCity() == null || building.getCity() == 0){
|
|
|
+ building.setCity(community.getCity());
|
|
|
+ }
|
|
|
+ if(building.getRegion() == null || building.getRegion() == 0){
|
|
|
+ building.setRegion(community.getRegion());
|
|
|
}
|
|
|
int result = this.updateByPrimaryKeySelective(building);
|
|
|
//添加建筑
|