123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- package com.slibra.business.service.impl;
- import java.util.*;
- import java.util.stream.Collectors;
- import com.slibra.business.domain.*;
- import com.slibra.business.mapper.*;
- import com.slibra.business.req.NeighbourhoodNumberAndAddFlagReq;
- import com.slibra.business.res.*;
- import com.slibra.common.exception.ServiceException;
- import com.slibra.common.utils.DateUtils;
- import com.slibra.common.utils.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.slibra.business.service.ITPumpingStationService;
- import org.springframework.transaction.annotation.Transactional;
- import org.springframework.util.CollectionUtils;
- /**
- * 泵站Service业务层处理
- *
- * @author slibra
- * @date 2024-11-05
- */
- @Service
- public class TPumpingStationServiceImpl implements ITPumpingStationService
- {
- @Autowired
- private TPumpingStationMapper tPumpingStationMapper;
- @Autowired
- private TNeighborhoodBuildingMapper tNeighborhoodBuildingMapper;
- @Autowired
- private TPumpingStationNeighbourhoodNumberMapper tPumpingStationNeighbourhoodNumberMapper;
- @Autowired
- private CityMapper cityMapper;
- @Autowired
- private TNeighborhoodMapper tNeighborhoodMapper;
- /**
- * 查询泵站
- *
- * @param id 泵站主键
- * @return 泵站
- */
- @Override
- public TPumpingStation selectTPumpingStationById(Long id)
- {
- return tPumpingStationMapper.selectTPumpingStationById(id);
- }
- /**
- * 查询泵站列表
- *
- * @param tPumpingStation 泵站
- * @return 泵站
- */
- @Override
- public List<TPumpingStation> selectTPumpingStationList(TPumpingStation tPumpingStation)
- {
- List<TPumpingStation> pumpingStations = tPumpingStationMapper.selectTPumpingStationList(tPumpingStation);
- //2024年11月12日15:51:43 返回泵站关联的小区信息
- if(!CollectionUtils.isEmpty(pumpingStations)){
- for (TPumpingStation pumpingStation : pumpingStations) {
- this.addNeighbourhoodAndBuildings(pumpingStation);
- this.addExtraAddress(pumpingStation);
- }
- }
- return pumpingStations;
- }
- /**
- * 额外处理省市区的名字
- * @param pumpingStation
- */
- private void addExtraAddress(TPumpingStation pumpingStation) {
- String provinceId = pumpingStation.getProvinceId();
- String cityId = pumpingStation.getCityId();
- String countryId = pumpingStation.getCountryId();
- //省
- if(StringUtils.isNotBlank(provinceId)){
- City city = this.cityMapper.selectCityById(provinceId);
- if(!Objects.isNull(city)){
- pumpingStation.setProvinceName(city.getName());
- }
- }
- //市
- if(StringUtils.isNotBlank(cityId)){
- City city = this.cityMapper.selectCityById(cityId);
- if(!Objects.isNull(city)){
- pumpingStation.setCityName(city.getName());
- }
- }
- //区县
- if(StringUtils.isNotBlank(countryId)){
- City city = this.cityMapper.selectCityById(countryId);
- if(!Objects.isNull(city)){
- pumpingStation.setCountryName(city.getName());
- }
- }
- }
- /**
- * 查询泵站关联的小区信息
- * @param pumpingStation
- */
- private void addNeighbourhoodAndBuildings(TPumpingStation pumpingStation) {
- List<NeighbourhoodAndBuilding> list = this.tPumpingStationMapper.getNeighbourhoodAndBuildingByPumpingId(pumpingStation.getId());
- if(!CollectionUtils.isEmpty(list)){
- Map<String, List<NeighbourhoodAndBuilding>> collect = list.stream().collect(Collectors.groupingBy(NeighbourhoodAndBuilding::getNeighborhoodName));
- List<NeighbourhoodAndNumber> result = new ArrayList<>(collect.size());
- collect.forEach((key, value) -> {
- NeighbourhoodAndNumber neighbourhoodAndNumber = new NeighbourhoodAndNumber();
- neighbourhoodAndNumber.setNeighbourhoodName(key);
- neighbourhoodAndNumber.setBuildingsNames(value.stream().map(NeighbourhoodAndBuilding::getNeighborhoodBuildingName).collect(Collectors.joining("、")));
- result.add(neighbourhoodAndNumber);
- });
- StringBuilder sb = new StringBuilder();
- for (int i = 0; i < result.size(); i++) {
- NeighbourhoodAndNumber neighbourhoodAndNumber = result.get(i);
- sb.append(neighbourhoodAndNumber.getNeighbourhoodName()).append("(").append(neighbourhoodAndNumber.getBuildingsNames()).append(")");
- if (i != result.size() - 1) {
- sb.append(",");
- }
- }
- pumpingStation.setNeighbourhoodAndBuildings(sb.toString());
- }
- }
- /**
- * 新增泵站
- *
- * @param tPumpingStation 泵站
- * @return 结果
- */
- @Override
- public int insertTPumpingStation(TPumpingStation tPumpingStation)
- {
- tPumpingStation.setCreateTime(DateUtils.getNowDate());
- return tPumpingStationMapper.insertTPumpingStation(tPumpingStation);
- }
- /**
- * 修改泵站
- *
- * @param tPumpingStation 泵站
- * @return 结果
- */
- @Override
- public int updateTPumpingStation(TPumpingStation tPumpingStation)
- {
- tPumpingStation.setUpdateTime(DateUtils.getNowDate());
- return tPumpingStationMapper.updateTPumpingStation(tPumpingStation);
- }
- /**
- * 批量删除泵站
- *
- * @param ids 需要删除的泵站主键
- * @return 结果
- */
- @Override
- public int deleteTPumpingStationByIds(Long[] ids)
- {
- return tPumpingStationMapper.deleteTPumpingStationByIds(ids);
- }
- /**
- * 删除泵站信息
- *
- * @param id 泵站主键
- * @return 结果
- */
- @Override
- public int deleteTPumpingStationById(Long id)
- {
- return tPumpingStationMapper.deleteTPumpingStationById(id);
- }
- @Override
- public List<NeighbourhoodNumberAndAddFlag> getBuildingsAndFlagByID2(NeighbourhoodNumberAndAddFlagReq req) {
- Long neighbourhoodId = req.getNeighbourhoodId();
- Long pumpingStationId = req.getPumpingStationId();
- List<NeighbourhoodNumberAndAddFlag> result = new ArrayList<>();
- //先获取该小区下的所有的楼号
- List<TNeighborhoodBuilding> tNeighborhoodBuildings = this.tNeighborhoodBuildingMapper.selectTNeighborhoodBuildingList(TNeighborhoodBuilding.builder().neighborhoodId(neighbourhoodId).build());
- if(CollectionUtils.isEmpty(tNeighborhoodBuildings))
- return result;
- //有楼号
- for (TNeighborhoodBuilding tNeighborhoodBuilding : tNeighborhoodBuildings) {
- NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag = new NeighbourhoodNumberAndAddFlag();
- //楼号
- neighbourhoodNumberAndAddFlag.setBuildingId(tNeighborhoodBuilding.getId());
- neighbourhoodNumberAndAddFlag.setBuildingsNames(tNeighborhoodBuilding.getName());
- //小区
- neighbourhoodNumberAndAddFlag.setNeighbourhoodId(neighbourhoodId);
- //泵站ID
- neighbourhoodNumberAndAddFlag.setPumpingStationId(pumpingStationId);
- //通过楼号和泵站查询对应的楼号是否已经添加过了
- List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
- // TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber = tPumpingStationNeighbourhoodNumbers.get(0);
- // neighbourhoodNumberAndAddFlag.setId(tPumpingStationNeighbourhoodNumber.getId());
- neighbourhoodNumberAndAddFlag.setAddStatus(2);
- }else{
- //查看对应的楼号是不是被其他泵站添加了
- List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers1 = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers1)){
- neighbourhoodNumberAndAddFlag.setAddStatus(1);
- }else{
- neighbourhoodNumberAndAddFlag.setAddStatus(0);
- }
- }
- result.add(neighbourhoodNumberAndAddFlag);
- }
- return result;
- }
- @Override
- @Transactional(rollbackFor = Exception.class)
- public String addPumpingStationAndNeighbourhoodBuildings(List<TNeighborhood> req) {
- //需要把之前所有的关联数据全部删除掉
- if(!CollectionUtils.isEmpty(req)){
- for (TNeighborhood tNeighborhood : req) {
- List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbersExists = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(tNeighborhood.getPumpingStationId()).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbersExists)){
- for (TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber : tPumpingStationNeighbourhoodNumbersExists) {
- this.tPumpingStationNeighbourhoodNumberMapper.deleteTPumpingStationNeighbourhoodNumberById(tPumpingStationNeighbourhoodNumber.getId());
- }
- }
- }
- //保存新的数据
- for (TNeighborhood addReq : req) {
- List<NeighbourhoodNumberAndAddFlag> neighbourhoodNumberAndAddFlags = addReq.getNeighbourhoodNumberAndAddFlags();
- if(!CollectionUtils.isEmpty(neighbourhoodNumberAndAddFlags)){
- Long pumpingStationId = addReq.getPumpingStationId();
- Long neighbourhoodId = addReq.getId();
- for (NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag : neighbourhoodNumberAndAddFlags) {
- Long buildingId = neighbourhoodNumberAndAddFlag.getBuildingId();
- //判断是否已经添加过了,添加过了就抛出异常 不用判断是否已添加了,因为是每次都是覆盖添加
- /*List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(neighbourhoodId).neighborhoodBuildingId(buildingId).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
- throw new ServiceException("有存在重复添加的数据,请检查!");
- }*/
- //赋值
- TPumpingStationNeighbourhoodNumber build = TPumpingStationNeighbourhoodNumber.builder().build();
- build.setPumpingStationId(pumpingStationId);
- build.setNeighborhoodId(neighbourhoodId);
- build.setNeighborhoodBuildingId(buildingId);
- //保存
- tPumpingStationNeighbourhoodNumberMapper.insertTPumpingStationNeighbourhoodNumber(build);
- }
- }
- }
- }
- return "操作成功";
- }
- @Override
- public List<TNeighborhood> getSimpleNeighbourhoodList(TNeighborhood tNeighborhood) {
- Long pumpingStationId = tNeighborhood.getPumpingStationId();
- if(Objects.isNull(pumpingStationId))
- throw new ServiceException("请输入泵站ID");
- List<TNeighborhood> tNeighborhoods = this.tNeighborhoodMapper.selectTNeighborhoodList(tNeighborhood);
- //处理其他信息
- for (TNeighborhood neighborhood : tNeighborhoods) {
- this.addNeighbourhoodBuildingsAndStatus(neighborhood, pumpingStationId);
- }
- return tNeighborhoods;
- }
- private void addNeighbourhoodBuildingsAndStatus(TNeighborhood neighborhood, Long pumpingStationId) {
- //额外的信息
- List<NeighbourhoodNumberAndAddFlag> neighbourhoodNumberAndAddFlags = new ArrayList<>();
- Long neighbourhoodId = neighborhood.getId();
- //先获取该小区下的所有的楼号
- List<TNeighborhoodBuilding> tNeighborhoodBuildings = this.tNeighborhoodBuildingMapper.selectTNeighborhoodBuildingList(TNeighborhoodBuilding.builder().neighborhoodId(neighbourhoodId).build());
- //有楼号
- for (TNeighborhoodBuilding tNeighborhoodBuilding : tNeighborhoodBuildings) {
- NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag = new NeighbourhoodNumberAndAddFlag();
- //楼号
- neighbourhoodNumberAndAddFlag.setBuildingId(tNeighborhoodBuilding.getId());
- neighbourhoodNumberAndAddFlag.setBuildingsNames(tNeighborhoodBuilding.getName());
- //小区
- neighbourhoodNumberAndAddFlag.setNeighbourhoodId(neighbourhoodId);
- //泵站ID
- neighbourhoodNumberAndAddFlag.setPumpingStationId(pumpingStationId);
- //通过楼号和泵站查询对应的楼号是否已经添加过了
- List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
- // TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber = tPumpingStationNeighbourhoodNumbers.get(0);
- // neighbourhoodNumberAndAddFlag.setId(tPumpingStationNeighbourhoodNumber.getId());
- neighbourhoodNumberAndAddFlag.setAddStatus(2);
- }else{
- //查看对应的楼号是不是被其他泵站添加了
- List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers1 = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
- if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers1)){
- neighbourhoodNumberAndAddFlag.setAddStatus(1);
- }else{
- neighbourhoodNumberAndAddFlag.setAddStatus(0);
- }
- }
- neighbourhoodNumberAndAddFlags.add(neighbourhoodNumberAndAddFlag);
- }
- neighborhood.setNeighbourhoodNumberAndAddFlags(neighbourhoodNumberAndAddFlags);
- neighborhood.setPumpingStationId(pumpingStationId);
- }
- }
|