|
|
|
@ -18,10 +18,12 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -73,14 +75,27 @@ public class BlocksServiceImpl extends ServiceImpl<BlocksMapper, Blocks> impleme
|
|
|
|
|
@Override |
|
|
|
|
public List<BlocksPreSaleTotalDto> getPreSaleDetailList(String landListedId, String buildingName) { |
|
|
|
|
//获取楼盘id
|
|
|
|
|
AnnoBlocksRel annoBlocksRel = annoBlocksRelMapper.selectOne(Wrappers.<AnnoBlocksRel>query().lambda() |
|
|
|
|
.eq(AnnoBlocksRel::getLandListedId, landListedId).eq(AnnoBlocksRel::getMainLand, 1)); |
|
|
|
|
// List<HousingEstates> housingEstates = housingEstatesMapper.selectList(Wrappers.<HousingEstates>query().lambda().eq(HousingEstates::getName, buildingName));
|
|
|
|
|
|
|
|
|
|
if (annoBlocksRel == null) { |
|
|
|
|
List<AnnoBlocksRel> annoBlocksRelList = new ArrayList<>(); |
|
|
|
|
//判断楼盘名称是不是空的
|
|
|
|
|
if( StringUtils.isNotBlank(buildingName)){ |
|
|
|
|
List<HousingEstates> housingEstates = housingEstatesMapper.selectList(Wrappers.<HousingEstates>query().lambda().eq(HousingEstates::getName, buildingName)); |
|
|
|
|
if(housingEstates.size() == 1){ |
|
|
|
|
annoBlocksRelList = annoBlocksRelMapper.selectList(Wrappers.<AnnoBlocksRel>query().lambda() |
|
|
|
|
.eq(AnnoBlocksRel::getLandListedId, landListedId) |
|
|
|
|
.eq(AnnoBlocksRel::getMainLand, 1) |
|
|
|
|
.eq(AnnoBlocksRel::getHousingEstatesId,housingEstates.get(0).getHousingEstateId()) |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
}else{ |
|
|
|
|
annoBlocksRelList = annoBlocksRelMapper.selectList(Wrappers.<AnnoBlocksRel>query().lambda() |
|
|
|
|
.eq(AnnoBlocksRel::getLandListedId, landListedId) |
|
|
|
|
.eq(AnnoBlocksRel::getMainLand, 1) |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
if (annoBlocksRelList.size() != 1) { |
|
|
|
|
return null; |
|
|
|
|
} |
|
|
|
|
List<BlocksPreSaleTotalDto> saleTotalDtoList = baseMapper.getHouseSaleInfo(annoBlocksRel.getHousingEstatesId()); |
|
|
|
|
List<BlocksPreSaleTotalDto> saleTotalDtoList = baseMapper.getHouseSaleInfo(annoBlocksRelList.get(0).getHousingEstatesId()); |
|
|
|
|
if (CollectionUtil.isNotEmpty(saleTotalDtoList)) { |
|
|
|
|
saleTotalDtoList.forEach(saleInfo -> { |
|
|
|
|
if (saleInfo.getPreSaleTotal() > 0) { |
|
|
|
|