TPumpingStationServiceImpl.java 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. package com.slibra.business.service.impl;
  2. import java.util.*;
  3. import java.util.stream.Collectors;
  4. import com.slibra.business.domain.*;
  5. import com.slibra.business.mapper.*;
  6. import com.slibra.business.req.NeighbourhoodNumberAndAddFlagReq;
  7. import com.slibra.business.res.*;
  8. import com.slibra.common.exception.ServiceException;
  9. import com.slibra.common.utils.DateUtils;
  10. import com.slibra.common.utils.StringUtils;
  11. import org.springframework.beans.factory.annotation.Autowired;
  12. import org.springframework.stereotype.Service;
  13. import com.slibra.business.service.ITPumpingStationService;
  14. import org.springframework.transaction.annotation.Transactional;
  15. import org.springframework.util.CollectionUtils;
  16. /**
  17. * 泵站Service业务层处理
  18. *
  19. * @author slibra
  20. * @date 2024-11-05
  21. */
  22. @Service
  23. public class TPumpingStationServiceImpl implements ITPumpingStationService
  24. {
  25. @Autowired
  26. private TPumpingStationMapper tPumpingStationMapper;
  27. @Autowired
  28. private TNeighborhoodBuildingMapper tNeighborhoodBuildingMapper;
  29. @Autowired
  30. private TPumpingStationNeighbourhoodNumberMapper tPumpingStationNeighbourhoodNumberMapper;
  31. @Autowired
  32. private CityMapper cityMapper;
  33. @Autowired
  34. private TNeighborhoodMapper tNeighborhoodMapper;
  35. /**
  36. * 查询泵站
  37. *
  38. * @param id 泵站主键
  39. * @return 泵站
  40. */
  41. @Override
  42. public TPumpingStation selectTPumpingStationById(Long id)
  43. {
  44. return tPumpingStationMapper.selectTPumpingStationById(id);
  45. }
  46. /**
  47. * 查询泵站列表
  48. *
  49. * @param tPumpingStation 泵站
  50. * @return 泵站
  51. */
  52. @Override
  53. public List<TPumpingStation> selectTPumpingStationList(TPumpingStation tPumpingStation)
  54. {
  55. List<TPumpingStation> pumpingStations = tPumpingStationMapper.selectTPumpingStationList(tPumpingStation);
  56. //2024年11月12日15:51:43 返回泵站关联的小区信息
  57. if(!CollectionUtils.isEmpty(pumpingStations)){
  58. for (TPumpingStation pumpingStation : pumpingStations) {
  59. this.addNeighbourhoodAndBuildings(pumpingStation);
  60. this.addExtraAddress(pumpingStation);
  61. }
  62. }
  63. return pumpingStations;
  64. }
  65. /**
  66. * 额外处理省市区的名字
  67. * @param pumpingStation
  68. */
  69. private void addExtraAddress(TPumpingStation pumpingStation) {
  70. String provinceId = pumpingStation.getProvinceId();
  71. String cityId = pumpingStation.getCityId();
  72. String countryId = pumpingStation.getCountryId();
  73. //省
  74. if(StringUtils.isNotBlank(provinceId)){
  75. City city = this.cityMapper.selectCityById(provinceId);
  76. if(!Objects.isNull(city)){
  77. pumpingStation.setProvinceName(city.getName());
  78. }
  79. }
  80. //市
  81. if(StringUtils.isNotBlank(cityId)){
  82. City city = this.cityMapper.selectCityById(cityId);
  83. if(!Objects.isNull(city)){
  84. pumpingStation.setCityName(city.getName());
  85. }
  86. }
  87. //区县
  88. if(StringUtils.isNotBlank(countryId)){
  89. City city = this.cityMapper.selectCityById(countryId);
  90. if(!Objects.isNull(city)){
  91. pumpingStation.setCountryName(city.getName());
  92. }
  93. }
  94. }
  95. /**
  96. * 查询泵站关联的小区信息
  97. * @param pumpingStation
  98. */
  99. private void addNeighbourhoodAndBuildings(TPumpingStation pumpingStation) {
  100. List<NeighbourhoodAndBuilding> list = this.tPumpingStationMapper.getNeighbourhoodAndBuildingByPumpingId(pumpingStation.getId());
  101. if(!CollectionUtils.isEmpty(list)){
  102. Map<String, List<NeighbourhoodAndBuilding>> collect = list.stream().collect(Collectors.groupingBy(NeighbourhoodAndBuilding::getNeighborhoodName));
  103. List<NeighbourhoodAndNumber> result = new ArrayList<>(collect.size());
  104. collect.forEach((key, value) -> {
  105. NeighbourhoodAndNumber neighbourhoodAndNumber = new NeighbourhoodAndNumber();
  106. neighbourhoodAndNumber.setNeighbourhoodName(key);
  107. neighbourhoodAndNumber.setBuildingsNames(value.stream().map(NeighbourhoodAndBuilding::getNeighborhoodBuildingName).collect(Collectors.joining("、")));
  108. result.add(neighbourhoodAndNumber);
  109. });
  110. StringBuilder sb = new StringBuilder();
  111. for (int i = 0; i < result.size(); i++) {
  112. NeighbourhoodAndNumber neighbourhoodAndNumber = result.get(i);
  113. sb.append(neighbourhoodAndNumber.getNeighbourhoodName()).append("(").append(neighbourhoodAndNumber.getBuildingsNames()).append(")");
  114. if (i != result.size() - 1) {
  115. sb.append(",");
  116. }
  117. }
  118. pumpingStation.setNeighbourhoodAndBuildings(sb.toString());
  119. }
  120. }
  121. /**
  122. * 新增泵站
  123. *
  124. * @param tPumpingStation 泵站
  125. * @return 结果
  126. */
  127. @Override
  128. public int insertTPumpingStation(TPumpingStation tPumpingStation)
  129. {
  130. tPumpingStation.setCreateTime(DateUtils.getNowDate());
  131. return tPumpingStationMapper.insertTPumpingStation(tPumpingStation);
  132. }
  133. /**
  134. * 修改泵站
  135. *
  136. * @param tPumpingStation 泵站
  137. * @return 结果
  138. */
  139. @Override
  140. public int updateTPumpingStation(TPumpingStation tPumpingStation)
  141. {
  142. tPumpingStation.setUpdateTime(DateUtils.getNowDate());
  143. return tPumpingStationMapper.updateTPumpingStation(tPumpingStation);
  144. }
  145. /**
  146. * 批量删除泵站
  147. *
  148. * @param ids 需要删除的泵站主键
  149. * @return 结果
  150. */
  151. @Override
  152. public int deleteTPumpingStationByIds(Long[] ids)
  153. {
  154. return tPumpingStationMapper.deleteTPumpingStationByIds(ids);
  155. }
  156. /**
  157. * 删除泵站信息
  158. *
  159. * @param id 泵站主键
  160. * @return 结果
  161. */
  162. @Override
  163. public int deleteTPumpingStationById(Long id)
  164. {
  165. return tPumpingStationMapper.deleteTPumpingStationById(id);
  166. }
  167. @Override
  168. public List<NeighbourhoodNumberAndAddFlag> getBuildingsAndFlagByID2(NeighbourhoodNumberAndAddFlagReq req) {
  169. Long neighbourhoodId = req.getNeighbourhoodId();
  170. Long pumpingStationId = req.getPumpingStationId();
  171. List<NeighbourhoodNumberAndAddFlag> result = new ArrayList<>();
  172. //先获取该小区下的所有的楼号
  173. List<TNeighborhoodBuilding> tNeighborhoodBuildings = this.tNeighborhoodBuildingMapper.selectTNeighborhoodBuildingList(TNeighborhoodBuilding.builder().neighborhoodId(neighbourhoodId).build());
  174. if(CollectionUtils.isEmpty(tNeighborhoodBuildings))
  175. return result;
  176. //有楼号
  177. for (TNeighborhoodBuilding tNeighborhoodBuilding : tNeighborhoodBuildings) {
  178. NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag = new NeighbourhoodNumberAndAddFlag();
  179. //楼号
  180. neighbourhoodNumberAndAddFlag.setBuildingId(tNeighborhoodBuilding.getId());
  181. neighbourhoodNumberAndAddFlag.setBuildingsNames(tNeighborhoodBuilding.getName());
  182. //小区
  183. neighbourhoodNumberAndAddFlag.setNeighbourhoodId(neighbourhoodId);
  184. //泵站ID
  185. neighbourhoodNumberAndAddFlag.setPumpingStationId(pumpingStationId);
  186. //通过楼号和泵站查询对应的楼号是否已经添加过了
  187. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
  188. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
  189. // TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber = tPumpingStationNeighbourhoodNumbers.get(0);
  190. // neighbourhoodNumberAndAddFlag.setId(tPumpingStationNeighbourhoodNumber.getId());
  191. neighbourhoodNumberAndAddFlag.setAddStatus(2);
  192. }else{
  193. //查看对应的楼号是不是被其他泵站添加了
  194. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers1 = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
  195. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers1)){
  196. neighbourhoodNumberAndAddFlag.setAddStatus(1);
  197. }else{
  198. neighbourhoodNumberAndAddFlag.setAddStatus(0);
  199. }
  200. }
  201. result.add(neighbourhoodNumberAndAddFlag);
  202. }
  203. return result;
  204. }
  205. @Override
  206. @Transactional(rollbackFor = Exception.class)
  207. public String addPumpingStationAndNeighbourhoodBuildings(List<TNeighborhood> req) {
  208. //需要把之前所有的关联数据全部删除掉
  209. if(!CollectionUtils.isEmpty(req)){
  210. for (TNeighborhood tNeighborhood : req) {
  211. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbersExists = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(tNeighborhood.getPumpingStationId()).build());
  212. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbersExists)){
  213. for (TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber : tPumpingStationNeighbourhoodNumbersExists) {
  214. this.tPumpingStationNeighbourhoodNumberMapper.deleteTPumpingStationNeighbourhoodNumberById(tPumpingStationNeighbourhoodNumber.getId());
  215. }
  216. }
  217. }
  218. //保存新的数据
  219. for (TNeighborhood addReq : req) {
  220. List<NeighbourhoodNumberAndAddFlag> neighbourhoodNumberAndAddFlags = addReq.getNeighbourhoodNumberAndAddFlags();
  221. if(!CollectionUtils.isEmpty(neighbourhoodNumberAndAddFlags)){
  222. Long pumpingStationId = addReq.getPumpingStationId();
  223. Long neighbourhoodId = addReq.getId();
  224. for (NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag : neighbourhoodNumberAndAddFlags) {
  225. Long buildingId = neighbourhoodNumberAndAddFlag.getBuildingId();
  226. //判断是否已经添加过了,添加过了就抛出异常 不用判断是否已添加了,因为是每次都是覆盖添加
  227. /*List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(neighbourhoodId).neighborhoodBuildingId(buildingId).build());
  228. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
  229. throw new ServiceException("有存在重复添加的数据,请检查!");
  230. }*/
  231. //赋值
  232. TPumpingStationNeighbourhoodNumber build = TPumpingStationNeighbourhoodNumber.builder().build();
  233. build.setPumpingStationId(pumpingStationId);
  234. build.setNeighborhoodId(neighbourhoodId);
  235. build.setNeighborhoodBuildingId(buildingId);
  236. //保存
  237. tPumpingStationNeighbourhoodNumberMapper.insertTPumpingStationNeighbourhoodNumber(build);
  238. }
  239. }
  240. }
  241. }
  242. return "操作成功";
  243. }
  244. @Override
  245. public List<TNeighborhood> getSimpleNeighbourhoodList(TNeighborhood tNeighborhood) {
  246. Long pumpingStationId = tNeighborhood.getPumpingStationId();
  247. if(Objects.isNull(pumpingStationId))
  248. throw new ServiceException("请输入泵站ID");
  249. List<TNeighborhood> tNeighborhoods = this.tNeighborhoodMapper.selectTNeighborhoodList(tNeighborhood);
  250. //处理其他信息
  251. for (TNeighborhood neighborhood : tNeighborhoods) {
  252. this.addNeighbourhoodBuildingsAndStatus(neighborhood, pumpingStationId);
  253. }
  254. return tNeighborhoods;
  255. }
  256. private void addNeighbourhoodBuildingsAndStatus(TNeighborhood neighborhood, Long pumpingStationId) {
  257. //额外的信息
  258. List<NeighbourhoodNumberAndAddFlag> neighbourhoodNumberAndAddFlags = new ArrayList<>();
  259. Long neighbourhoodId = neighborhood.getId();
  260. //先获取该小区下的所有的楼号
  261. List<TNeighborhoodBuilding> tNeighborhoodBuildings = this.tNeighborhoodBuildingMapper.selectTNeighborhoodBuildingList(TNeighborhoodBuilding.builder().neighborhoodId(neighbourhoodId).build());
  262. //有楼号
  263. for (TNeighborhoodBuilding tNeighborhoodBuilding : tNeighborhoodBuildings) {
  264. NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag = new NeighbourhoodNumberAndAddFlag();
  265. //楼号
  266. neighbourhoodNumberAndAddFlag.setBuildingId(tNeighborhoodBuilding.getId());
  267. neighbourhoodNumberAndAddFlag.setBuildingsNames(tNeighborhoodBuilding.getName());
  268. //小区
  269. neighbourhoodNumberAndAddFlag.setNeighbourhoodId(neighbourhoodId);
  270. //泵站ID
  271. neighbourhoodNumberAndAddFlag.setPumpingStationId(pumpingStationId);
  272. //通过楼号和泵站查询对应的楼号是否已经添加过了
  273. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
  274. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
  275. // TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber = tPumpingStationNeighbourhoodNumbers.get(0);
  276. // neighbourhoodNumberAndAddFlag.setId(tPumpingStationNeighbourhoodNumber.getId());
  277. neighbourhoodNumberAndAddFlag.setAddStatus(2);
  278. }else{
  279. //查看对应的楼号是不是被其他泵站添加了
  280. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers1 = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
  281. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers1)){
  282. neighbourhoodNumberAndAddFlag.setAddStatus(1);
  283. }else{
  284. neighbourhoodNumberAndAddFlag.setAddStatus(0);
  285. }
  286. }
  287. neighbourhoodNumberAndAddFlags.add(neighbourhoodNumberAndAddFlag);
  288. }
  289. neighborhood.setNeighbourhoodNumberAndAddFlags(neighbourhoodNumberAndAddFlags);
  290. neighborhood.setPumpingStationId(pumpingStationId);
  291. }
  292. }