|
|
|
@ -18,20 +18,24 @@ import com.air.origin.entity.BlocksOrigin;
|
|
|
|
|
import com.air.origin.entity.HousesOrigin; |
|
|
|
|
import com.air.origin.service.BlocksOriginService; |
|
|
|
|
import com.air.origin.service.HousesOriginService; |
|
|
|
|
import com.air.utils.RedisUtil; |
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
|
import com.cinderella.framework.common.core.exception.BusinessException; |
|
|
|
|
import com.cinderella.framework.common.core.util.R; |
|
|
|
|
import com.cinderella.framework.common.data.mybatis.QueryPage; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.HashSet; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 楼盘(小区) |
|
|
|
@ -60,13 +64,85 @@ public class HousingEstatesServiceImpl extends ServiceImpl<HousingEstatesMapper,
|
|
|
|
|
@Autowired |
|
|
|
|
private FormatService formatService; |
|
|
|
|
|
|
|
|
|
private RedisUtil redisUtil; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
ThreadPoolTaskExecutor executor; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public IPage<HousingEstatesName> getHousingEstatesNamePage(IPage<HousingEstatesName> page, String name) { |
|
|
|
|
return housingEstatesMapper.getHousingEstatesNamePage(page, name); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@Transactional |
|
|
|
|
public List<HousingEstatesName> getHousingEstatesName(String name) { |
|
|
|
|
//查询地块表
|
|
|
|
|
List<LandListed> landListeds = landListedMapper.selectBuildingName(); |
|
|
|
|
log.info("查询地块表===={}==",landListeds); |
|
|
|
|
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); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
// landListeds.forEach( landName ->{
|
|
|
|
|
// housingEstatesNames.forEach( housingName ->{
|
|
|
|
|
// if(landName.getBuildingName().equals(housingName.getName())){
|
|
|
|
|
// landListeds.remove(landName.getBuildingName());
|
|
|
|
|
// }
|
|
|
|
|
// } );
|
|
|
|
|
// });
|
|
|
|
|
if(landListeds.size() > 0){ |
|
|
|
|
|
|
|
|
|
return housingEstatesMapper.getHousingEstatesNamePage(page, name); |
|
|
|
|
landListeds.forEach(landListed -> { |
|
|
|
|
HousingEstates housingEstates = new HousingEstates(); |
|
|
|
|
housingEstates.setName(landListed.getBuildingName()); |
|
|
|
|
housingEstates.setStatusCd(Constant.COMMON_STATUS_1000); |
|
|
|
|
list.add(housingEstates); |
|
|
|
|
}); |
|
|
|
|
log.info("添加的数量{}",list.size()); |
|
|
|
|
this.saveBatch(list); |
|
|
|
|
}else{ |
|
|
|
|
return housingEstatesNames; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//添加地块关联表
|
|
|
|
|
List<LandListed> landListed = landListedMapper.selectBuildingNames(); //查询楼盘。编号
|
|
|
|
|
List<HousingEstatesName> housingEstatesName = housingEstatesMapper.selectIName(name); //查询楼盘
|
|
|
|
|
List<AnnoBlocksRel> annoBlocksRelList = new ArrayList<>(); |
|
|
|
|
//添加地块关联表
|
|
|
|
|
|
|
|
|
|
housingEstatesName.forEach( housingEstatesName1 -> { |
|
|
|
|
landListed.forEach( landListed1 -> { |
|
|
|
|
if(housingEstatesName1.getName().equals(landListed1.getBuildingName())){ |
|
|
|
|
AnnoBlocksRel annoBlocksRel = new AnnoBlocksRel(); |
|
|
|
|
annoBlocksRel.setHousingEstatesId(housingEstatesName1.getHousingEstateId()); |
|
|
|
|
annoBlocksRel.setLandListedId(landListed1.getLandListedId()); |
|
|
|
|
if(redisUtil.getCacheObject(landListed1.getLandListedId() + housingEstatesName1.getHousingEstateId() ) != null){ |
|
|
|
|
annoBlocksRel.setMainLand(0); |
|
|
|
|
}else{ |
|
|
|
|
redisUtil.setCacheObject(landListed1.getLandListedId() + housingEstatesName1.getHousingEstateId(),1,5, TimeUnit.MINUTES); |
|
|
|
|
annoBlocksRel.setMainLand(1); |
|
|
|
|
} |
|
|
|
|
annoBlocksRel.setStatusCd(Constant.COMMON_STATUS_1000); |
|
|
|
|
annoBlocksRelList.add(annoBlocksRel); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
if(annoBlocksRelList.size() > 0){ |
|
|
|
|
log.info("添加的数量{}",annoBlocksRelList.size()); |
|
|
|
|
boolean b = annoBlocksRelService.saveBatch(annoBlocksRelList); |
|
|
|
|
if(!b){ |
|
|
|
|
throw new BusinessException("添加失败!!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return housingEstatesName; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|