|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.air.housing.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil; |
|
|
|
|
import cn.hutool.core.util.ObjectUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.air.common.Constant; |
|
|
|
|
import com.air.enums.BlocksOriginStatusEnum; |
|
|
|
@ -8,6 +9,7 @@ import com.air.housing.dto.HousingDefine;
|
|
|
|
|
import com.air.housing.dto.HousingEstatesListDto; |
|
|
|
|
import com.air.housing.dto.HousingEstatesQuery; |
|
|
|
|
import com.air.housing.entity.*; |
|
|
|
|
import com.air.housing.mapper.AnnoBlocksRelMapper; |
|
|
|
|
import com.air.housing.mapper.HousingEstatesMapper; |
|
|
|
|
import com.air.housing.service.*; |
|
|
|
|
import com.air.housing.vo.HousingEstatesDetail; |
|
|
|
@ -59,11 +61,15 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
private HousingEstatesMapper housingEstatesMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private AnnoBlocksRelService annoBlocksRelService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private AnnoBlocksRelMapper annoBlocksRelMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private LandListedMapper landListedMapper; |
|
|
|
|
@Autowired |
|
|
|
|
private FormatService formatService; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private RedisUtil redisUtil; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
@ -83,11 +89,13 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
List<HousingEstatesName> housingEstatesNames = housingEstatesMapper.selectIName(name); |
|
|
|
|
List<HousingEstates> list = new ArrayList<>(); |
|
|
|
|
//添加未添加的楼盘
|
|
|
|
|
for (int i = 0; i < landListeds.size(); i++) { |
|
|
|
|
for (HousingEstatesName housingEstatesName : housingEstatesNames) { |
|
|
|
|
if(landListeds.get(i).getBuildingName().equals(housingEstatesName.getName())){ |
|
|
|
|
log.info("========================{}",landListeds.get(i)); |
|
|
|
|
landListeds.remove(i); |
|
|
|
|
for ( HousingEstatesName housingEstatesName : housingEstatesNames) { |
|
|
|
|
for (LandListed landListed : landListeds) { |
|
|
|
|
if(landListed.getBuildingName().equals(housingEstatesName.getName())){ |
|
|
|
|
// log.info("========================{}",landListed);
|
|
|
|
|
// log.info("==============数量=========={}",landListeds.size());
|
|
|
|
|
landListeds.remove(landListed); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -108,7 +116,8 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
}); |
|
|
|
|
log.info("添加的数量{}",list.size()); |
|
|
|
|
this.saveBatch(list); |
|
|
|
|
}else{ |
|
|
|
|
} |
|
|
|
|
else{ |
|
|
|
|
return housingEstatesNames; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -124,10 +133,11 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
AnnoBlocksRel annoBlocksRel = new AnnoBlocksRel(); |
|
|
|
|
annoBlocksRel.setHousingEstatesId(housingEstatesName1.getHousingEstateId()); |
|
|
|
|
annoBlocksRel.setLandListedId(landListed1.getLandListedId()); |
|
|
|
|
if(redisUtil.getCacheObject(landListed1.getLandListedId() + housingEstatesName1.getHousingEstateId() ) != null){ |
|
|
|
|
Object object = redisUtil.getCacheObject("AA" + landListed1.getLandListedId()); |
|
|
|
|
if(ObjectUtil.isNotNull(object)){ |
|
|
|
|
annoBlocksRel.setMainLand(0); |
|
|
|
|
}else{ |
|
|
|
|
redisUtil.setCacheObject(landListed1.getLandListedId() + housingEstatesName1.getHousingEstateId(),1,5, TimeUnit.MINUTES); |
|
|
|
|
redisUtil.setCacheObject("AA"+landListed1.getLandListedId() ,1,2, TimeUnit.MINUTES); |
|
|
|
|
annoBlocksRel.setMainLand(1); |
|
|
|
|
} |
|
|
|
|
annoBlocksRel.setStatusCd(Constant.COMMON_STATUS_1000); |
|
|
|
@ -135,12 +145,27 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
if(annoBlocksRelList.size() > 0){ |
|
|
|
|
log.info("添加的数量{}",annoBlocksRelList.size()); |
|
|
|
|
boolean b = annoBlocksRelService.saveBatch(annoBlocksRelList); |
|
|
|
|
if(!b){ |
|
|
|
|
throw new BusinessException("添加失败!!"); |
|
|
|
|
if(annoBlocksRelList.size() > 0){ |
|
|
|
|
List<AnnoBlocksRel> annoBlocksRelList1 = annoBlocksRelMapper.selectName(); |
|
|
|
|
|
|
|
|
|
for ( AnnoBlocksRel annoBlocksRel : annoBlocksRelList1) { |
|
|
|
|
for ( AnnoBlocksRel annoBlocksRel1 : annoBlocksRelList ) { |
|
|
|
|
if( annoBlocksRel1.getHousingEstatesId().equals(annoBlocksRel.getHousingEstatesId()) && annoBlocksRel1.getLandListedId().equals(annoBlocksRel.getLandListedId()) ){ |
|
|
|
|
log.info("==============添加地块关联表的数量=========={}",annoBlocksRelList.size()); |
|
|
|
|
annoBlocksRelList.remove(annoBlocksRel1); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if(annoBlocksRelList.size() > 0){ |
|
|
|
|
log.info("添加地块关联表的数量{}",annoBlocksRelList.size()); |
|
|
|
|
int i = annoBlocksRelMapper.insertAllList(annoBlocksRelList); |
|
|
|
|
if(i < 1){ |
|
|
|
|
throw new BusinessException("添加失败!!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
return housingEstatesName; |
|
|
|
|
} |
|
|
|
@ -176,20 +201,14 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
housingDefine.setHousingEstateId(housingEstates.getHousingEstateId());//楼盘ID
|
|
|
|
|
} |
|
|
|
|
//查询楼盘业态是否存在,不存在时新建
|
|
|
|
|
Format format = formatService.getOne(Wrappers.<Format>query().lambda() |
|
|
|
|
.eq(Format::getHousingEstateId, housingDefine.getHousingEstateId()) |
|
|
|
|
.eq(Format::getPropertyType,housingDefine.getPropertyType()) |
|
|
|
|
.eq(Format::getLargeFormat, housingDefine.getLargeFormat()) |
|
|
|
|
.eq(Format::getFormat, housingDefine.getFormat())); |
|
|
|
|
if (format == null) { |
|
|
|
|
format = new Format(); |
|
|
|
|
Format format = new Format(); |
|
|
|
|
format.setHousingEstateId(housingDefine.getHousingEstateId()); |
|
|
|
|
format.setPropertyType(housingDefine.getPropertyType()); |
|
|
|
|
format.setLargeFormat(housingDefine.getLargeFormat()); |
|
|
|
|
format.setFormat(housingDefine.getFormat()); |
|
|
|
|
format.setStatusCd(Constant.COMMON_STATUS_1000); |
|
|
|
|
formatService.save(format); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//保存楼栋和房屋数据
|
|
|
|
|
copyBlocksOriginToBlocks(blocksOrigin, housingDefine,format.getFormatId()); |
|
|
|
|
//保存楼盘和地块之间的关系
|
|
|
|
|