WzLandManageDetailsServiceImpl.java 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. package com.example.service.impl;
  2. import com.example.dao.WzLandManageDetailsDao;
  3. import com.example.entity.OtnAreaEntity;
  4. import com.example.entity.WzLandManageDetailsEntity;
  5. import com.example.entity.vo.floormanager.FloorNoUserVo;
  6. import com.example.service.WzLandManageDetailsService;
  7. import com.example.service.WzOtnAreaService;
  8. import com.example.utils.Query;
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.stereotype.Service;
  11. import java.util.List;
  12. import java.util.Map;
  13. @Service
  14. public class WzLandManageDetailsServiceImpl implements WzLandManageDetailsService {
  15. @Autowired
  16. private WzOtnAreaService otnAreaService;
  17. @Autowired
  18. private WzLandManageDetailsDao wzLandManageDetailsDao;
  19. @Override
  20. public List<WzLandManageDetailsEntity> queryList(Map<String, Object> map) {
  21. if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
  22. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
  23. map.put("city", city.getName());
  24. }
  25. if (map.get("city") != null && map.get("city").toString().equals("全省")) {
  26. map.remove("city");
  27. }
  28. if (map.get("city") != null && map.get("city").toString().equals("")) {
  29. map.remove("city");
  30. }
  31. if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
  32. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
  33. map.put("county", city.getName());
  34. }
  35. if (map.get("county") != null && map.get("county").toString().equals("区县")) {
  36. map.remove("county");
  37. }
  38. if (map.get("county") != null && map.get("county").toString().equals("")) {
  39. map.remove("county");
  40. }
  41. if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
  42. String date = map.get("statisticalMonth").toString();
  43. date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
  44. map.put("statisticalMonth", date);
  45. } else {
  46. map.remove("statisticalMonth");
  47. }
  48. return wzLandManageDetailsDao.queryList(map);
  49. }
  50. @Override
  51. public int queryTotal(Map<String, Object> map) {
  52. if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
  53. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
  54. map.put("city", city.getName());
  55. }
  56. if (map.get("city") != null && map.get("city").toString().equals("全省")) {
  57. map.remove("city");
  58. }
  59. if (map.get("city") != null && map.get("city").toString().equals("")) {
  60. map.remove("city");
  61. }
  62. if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
  63. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
  64. map.put("county", city.getName());
  65. }
  66. if (map.get("county") != null && map.get("county").toString().equals("区县")) {
  67. map.remove("county");
  68. }
  69. if (map.get("county") != null && map.get("county").toString().equals("")) {
  70. map.remove("county");
  71. }
  72. if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
  73. String date = map.get("statisticalMonth").toString();
  74. date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
  75. map.put("statisticalMonth", date);
  76. } else {
  77. map.remove("statisticalMonth");
  78. }
  79. return wzLandManageDetailsDao.queryTotal(map);
  80. }
  81. @Override
  82. public List<FloorNoUserVo> queryLeaveUseList(Map<String, Object> map) {
  83. if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
  84. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
  85. map.put("city", city.getName());
  86. }
  87. if (map.get("city") != null && map.get("city").toString().equals("全省")) {
  88. map.remove("city");
  89. }
  90. if (map.get("city") != null && map.get("city").toString().equals("")) {
  91. map.remove("city");
  92. }
  93. if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
  94. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
  95. map.put("county", city.getName());
  96. }
  97. if (map.get("county") != null && map.get("county").toString().equals("区县")) {
  98. map.remove("county");
  99. }
  100. if (map.get("county") != null && map.get("county").toString().equals("")) {
  101. map.remove("county");
  102. }
  103. if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
  104. String date = map.get("statisticalMonth").toString();
  105. date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
  106. map.put("statisticalMonth", date);
  107. } else {
  108. map.remove("statisticalMonth");
  109. }
  110. return wzLandManageDetailsDao.queryLeaveUseList(map);
  111. }
  112. public void dealMap(Map<String, Object> map) {
  113. if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
  114. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
  115. map.put("city", city.getName());
  116. }
  117. if (map.get("city") != null && map.get("city").toString().equals("全省")) {
  118. map.remove("city");
  119. }
  120. if (map.get("city") != null && map.get("city").toString().equals("")) {
  121. map.remove("city");
  122. }
  123. if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
  124. OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
  125. map.put("county", city.getName());
  126. }
  127. if (map.get("county") != null && map.get("county").toString().equals("区县")) {
  128. map.remove("county");
  129. }
  130. if (map.get("county") != null && map.get("county").toString().equals("")) {
  131. map.remove("county");
  132. }
  133. if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("") && !map.get("statisticalMonth").toString().equals("账期")) {
  134. String date = map.get("statisticalMonth").toString();
  135. date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
  136. map.put("statisticalMonth", date);
  137. } else {
  138. map.remove("statisticalMonth");
  139. }
  140. }
  141. @Override
  142. public List<String> getBuildingNameAlias(Map<String, Object> map) {
  143. dealMap(map);
  144. return wzLandManageDetailsDao.getBuildingNameAlias(map);
  145. }
  146. @Override
  147. public List<String> getBuildingNameCode(Query query) {
  148. dealMap(query);
  149. return wzLandManageDetailsDao.getBuildingNameCode(query);
  150. }
  151. @Override
  152. public int queryBuildingNameCodeTotal(Query query1) {
  153. dealMap(query1);
  154. return wzLandManageDetailsDao.getBuildingNameAliasTotal(query1);
  155. }
  156. @Override
  157. public int getBuildingNameAliasTotal(Query query1) {
  158. dealMap(query1);
  159. return wzLandManageDetailsDao.queryBuildingNameCodeTotal(query1);
  160. }
  161. }