CommunityServiceImpl.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. package com.zoniot.ccrc.service.impl;
  2. import com.alibaba.fastjson.JSON;
  3. import com.github.pagehelper.PageHelper;
  4. import com.zoniot.ccrc.commom.exception.ServiceException;
  5. import com.zoniot.ccrc.commom.model.CommunityData;
  6. import com.zoniot.ccrc.commom.model.Pagination;
  7. import com.zoniot.ccrc.commom.utils.TreeUtil;
  8. import com.zoniot.ccrc.commom.utils.UserUtil;
  9. import com.zoniot.ccrc.commom.utils.Util;
  10. import com.zoniot.ccrc.dao.AreaMapper;
  11. import com.zoniot.ccrc.dao.BuildingMapper;
  12. import com.zoniot.ccrc.dao.CommunityMapper;
  13. import com.zoniot.ccrc.dao.OrganizationMapper;
  14. import com.zoniot.ccrc.dto.BuildingSelectDto;
  15. import com.zoniot.ccrc.dto.CommunityDto;
  16. import com.zoniot.ccrc.dto.LoginUser;
  17. import com.zoniot.ccrc.entity.Area;
  18. import com.zoniot.ccrc.entity.Community;
  19. import com.zoniot.ccrc.service.CommunityService;
  20. import lombok.extern.slf4j.Slf4j;
  21. import org.springframework.stereotype.Service;
  22. import javax.annotation.Resource;
  23. import java.util.Date;
  24. import java.util.List;
  25. import static com.google.common.collect.Lists.newArrayList;
  26. @Slf4j
  27. @Service
  28. public class CommunityServiceImpl implements CommunityService {
  29. @Resource
  30. private CommunityMapper communityMapper;
  31. @Resource
  32. private BuildingMapper buildingMapper;
  33. @Resource
  34. private AreaMapper areaMapper;
  35. @Resource
  36. private OrganizationMapper organizationMapper;
  37. @Override
  38. public List<BuildingSelectDto> regionSearch(Integer siteId , String name) {
  39. List<Integer> ids = newArrayList();
  40. List<BuildingSelectDto> buildingSelectDtoArrayList = newArrayList();
  41. List<CommunityDto> communityList = communityMapper.findBySiteId(siteId, null);
  42. if (communityList != null && communityList.size() > 0) {
  43. communityList.forEach(community -> {
  44. ids.add(community.getProvince());
  45. ids.add(community.getCity());
  46. ids.add(community.getRegion());
  47. });
  48. }
  49. //查询所有建筑的区域
  50. List<Area> areaList = newArrayList();
  51. if (ids.size() > 0) {
  52. areaList = areaMapper.findByIdsAndName(Util.removeDuplicate(ids),name);
  53. }
  54. if (areaList != null && areaList.size() > 0) {
  55. areaList.forEach(area -> {
  56. BuildingSelectDto buildingSelectDto = new BuildingSelectDto();
  57. buildingSelectDto.setCode(area.getId());
  58. buildingSelectDto.setPid(area.getParentId());
  59. buildingSelectDto.setName(area.getName());
  60. buildingSelectDto.setStatus(0);
  61. if(area.getLevelType() == 1)buildingSelectDto.setDimensionCode("PROVINCE");
  62. if(area.getLevelType() == 2)buildingSelectDto.setDimensionCode("CITY");
  63. if(area.getLevelType() == 3)buildingSelectDto.setDimensionCode("REGION");
  64. buildingSelectDtoArrayList.add(buildingSelectDto);
  65. });
  66. }
  67. return buildingSelectDtoArrayList;
  68. }
  69. @Override
  70. public int insert(Community community){
  71. community.setCreateBy("system");
  72. community.setDateCreate(new Date());
  73. community.setUpdateBy("system");
  74. community.setDateUpdate(new Date());
  75. return communityMapper.insert(community);
  76. }
  77. @Override
  78. public int insertSelective(Community community){
  79. community.setCreateBy(UserUtil.getCurrentUser().getUsername());
  80. community.setDateCreate(new Date());
  81. community.setUpdateBy(UserUtil.getCurrentUser().getUsername());
  82. community.setDateUpdate(new Date());
  83. return communityMapper.insertSelective(community);
  84. }
  85. @Override
  86. public int insertList(List<Community> communitys){
  87. return communityMapper.insertList(communitys);
  88. }
  89. @Override
  90. public int updateByPrimaryKeySelective(Community community){
  91. community.setUpdateBy("system");
  92. community.setDateUpdate(new Date());
  93. return communityMapper.updateByPrimaryKeySelective(community);
  94. }
  95. @Override
  96. public List<CommunityDto> queryList(Community community) {
  97. return communityMapper.queryList(community);
  98. }
  99. @Override
  100. public List<CommunityDto> queryCommunity(Community community) {
  101. return communityMapper.queryCommunity(community,null);
  102. }
  103. @Override
  104. public Pagination<CommunityDto> getCommunityPage(String communityName, Integer province, Integer city, Integer region,Integer orgId, int pageNum, int pageSize) {
  105. LoginUser loginUser = UserUtil.getCurrentUser();
  106. PageHelper.startPage(pageNum, pageSize);
  107. List<CommunityDto> list = communityMapper.getList(loginUser.getSiteId(), null, communityName, province, city, region, orgId);
  108. return new Pagination<>(list);
  109. }
  110. @Override
  111. public List<CommunityDto> queryCommunityTree(Integer siteId, String communityName) {
  112. List<CommunityDto> rtnList = communityMapper.findCommunityContainBuilding(siteId, communityName);
  113. return rtnList;
  114. }
  115. @Override
  116. public void addCommunity(CommunityDto communityDto) {
  117. log.info("Begin AddCommunity Community " + communityDto);
  118. LoginUser loginUser = UserUtil.getCurrentUser();
  119. Integer siteId = loginUser.getSiteId();
  120. if(communityDto.getProvince() == null || communityDto.getProvince() == 0){
  121. throw new ServiceException(-900, "获取省编码错误,请重新输入");
  122. }
  123. if(communityDto.getCity() == null || communityDto.getCity() == 0){
  124. throw new ServiceException(-900, "获取市编码错误,请重新输入");
  125. }
  126. if(communityDto.getRegion() == null || communityDto.getRegion() == 0){
  127. throw new ServiceException(-900, "获取区编码错误,请重新输入");
  128. }
  129. int resultName = communityMapper.findByNameUnique(siteId,null,communityDto.getProvince(),communityDto.getCity(),communityDto.getRegion(), communityDto.getName());
  130. if(resultName > 0) {
  131. throw new ServiceException(-900, "名称已经存在");
  132. }
  133. communityDto.setSiteId(siteId);
  134. communityDto.setCustomerId(loginUser.getCustomerId());
  135. communityDto.setStatus(1);
  136. //获取小区最大值,然后加1
  137. String code = "001";
  138. /*List<Community> communities = communityMapper.getMaxCodeBySiteId(communityDto.getSiteId());
  139. if(communities.size()==1)
  140. {
  141. if (communities.get(0) != null) {
  142. code =String.format("%03d",Integer.valueOf(communities.get(0).getCode()));
  143. }else {
  144. code = String.format("%03d",Integer.valueOf("1"));
  145. }
  146. }
  147. communityDto.setCode(code);*/
  148. this.insert(communityDto);
  149. log.info("End AddCommunity");
  150. }
  151. @Override
  152. public void editCommunity(Community community) {
  153. log.info("Begin EditCommunity Community " + community);
  154. LoginUser loginUser = UserUtil.getCurrentUser();
  155. Integer siteId = loginUser.getSiteId();
  156. if(community.getProvince() == null || community.getProvince() == 0){
  157. throw new ServiceException(-900, "获取省编码错误,请重新输入");
  158. }
  159. if(community.getCity() == null || community.getCity() == 0){
  160. throw new ServiceException(-900, "获取市编码错误,请重新输入");
  161. }
  162. if(community.getRegion() == null || community.getRegion() == 0){
  163. throw new ServiceException(-900, "获取区编码错误,请重新输入");
  164. }
  165. int resultName = communityMapper.findByNameUnique(siteId, community.getId(), community.getProvince(), community.getCity(), community.getRegion(), community.getName());
  166. if(resultName > 0) {
  167. throw new ServiceException(-900, "名称已经存在");
  168. }
  169. this.updateByPrimaryKeySelective(community);
  170. log.info("End EditCommunity");
  171. }
  172. @Override
  173. public void deleteCommunity(Integer communityId) {
  174. log.info("Begin DeleteCommunity CommunityId" + communityId);
  175. int reslut = buildingMapper.countBycCommunityId(communityId);
  176. if(reslut > 0){
  177. throw new ServiceException(-900,"该小区已经存在建筑,请先将建筑删除");
  178. }
  179. Community community = new Community();
  180. community.setId(communityId);
  181. community.setStatus(0);
  182. this.updateByPrimaryKeySelective(community);
  183. log.info("End DeleteCommunity");
  184. }
  185. @Override
  186. public List<BuildingSelectDto> getAreaTree() {
  187. LoginUser loginUser = UserUtil.getCurrentUser();
  188. List<Integer> ids = newArrayList();
  189. List<BuildingSelectDto> buildingSelectDtoArrayList = newArrayList();
  190. List<CommunityDto> communityList =newArrayList();
  191. communityList = communityMapper.findByCustomerId(loginUser.getCustomerId());
  192. if (communityList != null && communityList.size() > 0) {
  193. communityList.forEach(community -> {
  194. ids.add(community.getProvince());
  195. ids.add(community.getCity());
  196. ids.add(community.getRegion());
  197. });
  198. }
  199. //查询所有建筑的区域
  200. List<Area> areaList = newArrayList();
  201. if (ids.size() > 0) {
  202. areaList = areaMapper.findByIds(Util.removeDuplicate(ids));
  203. }
  204. if (areaList != null && areaList.size() > 0) {
  205. areaList.forEach(area -> {
  206. BuildingSelectDto buildingSelectDto = new BuildingSelectDto();
  207. buildingSelectDto.setCode(area.getId());
  208. buildingSelectDto.setPid(area.getParentId());
  209. buildingSelectDto.setName(area.getName());
  210. buildingSelectDto.setStatus(0);
  211. if(area.getLevelType() == 1)buildingSelectDto.setDimensionCode("PROVINCE");
  212. if(area.getLevelType() == 2)buildingSelectDto.setDimensionCode("CITY");
  213. if(area.getLevelType() == 3)buildingSelectDto.setDimensionCode("REGION");
  214. buildingSelectDtoArrayList.add(buildingSelectDto);
  215. });
  216. }
  217. return TreeUtil.getBuildingSelect(buildingSelectDtoArrayList, 100000, "", 1);
  218. }
  219. @Override
  220. public Community findByName(Integer siteId, String communityName) {
  221. return communityMapper.findByName(siteId,communityName);
  222. }
  223. @Override
  224. public Community findById(Integer communityId) {
  225. return communityMapper.findById(communityId);
  226. }
  227. @Override
  228. public List<Community> findBySiteId(Integer siteId) {
  229. return communityMapper.getBySiteId(siteId);
  230. }
  231. @Override
  232. public List<Community> getMaxCodeBySiteId(Integer siteId){
  233. return communityMapper.getMaxCodeBySiteId(siteId);
  234. }
  235. @Override
  236. public Community findByNameV2(Integer siteId, Integer province, Integer city, Integer region, String communityName) {
  237. return communityMapper.findByNameV2(siteId,province,city,region,communityName);
  238. }
  239. @Override
  240. public Community findCacheByName(Integer siteId, String communityName) {
  241. return communityMapper.findByName(siteId,communityName);
  242. }
  243. @Override
  244. public List<Community> getOrgCommunity(Integer orgId, Integer areaId) {
  245. return communityMapper.getOrgCommunity(orgId,areaId,UserUtil.getCurrentUser().getSiteId());
  246. }
  247. @Override
  248. public void syncCommunity(CommunityData communityData) {
  249. Integer siteId = organizationMapper.findSiteId(communityData.getCustomerId());
  250. Community communityTemp = communityMapper.findById(communityData.getId());
  251. Community community = new Community();
  252. community.setId(communityData.getId());
  253. community.setSiteId(siteId);
  254. community.setName(communityData.getName());
  255. community.setCode(communityData.getCode());
  256. community.setCustomerId(communityData.getCustomerId());
  257. community.setProvince(communityData.getProvince());
  258. community.setCity(communityData.getCity());
  259. community.setRegion(communityData.getRegion());
  260. community.setLongitude(communityData.getLongitude());
  261. community.setLatitude(communityData.getLatitude());
  262. community.setDistrictId(communityData.getDistrictId());
  263. community.setAddress(communityData.getAddress());
  264. community.setRemark(communityData.getRemark());
  265. community.setStatus(communityData.getStatus());
  266. community.setDateCreate(communityData.getDateCreate());
  267. community.setDateUpdate(communityData.getDateUpdate());
  268. community.setCreateBy("system");
  269. community.setUpdateBy("system");
  270. community.setOrgId(communityTemp!=null?communityTemp.getOrgId():null);
  271. log.info("syncCommunity community {}", JSON.toJSONString(community));
  272. communityMapper.replaceSelective(community);
  273. }
  274. }