123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- package com.example.service.impl;
- import com.example.dao.WzLandManageDetailsDao;
- import com.example.entity.OtnAreaEntity;
- import com.example.entity.WzLandManageDetailsEntity;
- import com.example.entity.vo.floormanager.FloorNoUserVo;
- import com.example.service.WzLandManageDetailsService;
- import com.example.service.WzOtnAreaService;
- import com.example.utils.Query;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import java.util.List;
- import java.util.Map;
- @Service
- public class WzLandManageDetailsServiceImpl implements WzLandManageDetailsService {
- @Autowired
- private WzOtnAreaService otnAreaService;
- @Autowired
- private WzLandManageDetailsDao wzLandManageDetailsDao;
- @Override
- public List<WzLandManageDetailsEntity> queryList(Map<String, Object> map) {
- if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
- map.put("city", city.getName());
- }
- if (map.get("city") != null && map.get("city").toString().equals("全省")) {
- map.remove("city");
- }
- if (map.get("city") != null && map.get("city").toString().equals("")) {
- map.remove("city");
- }
- if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
- map.put("county", city.getName());
- }
- if (map.get("county") != null && map.get("county").toString().equals("区县")) {
- map.remove("county");
- }
- if (map.get("county") != null && map.get("county").toString().equals("")) {
- map.remove("county");
- }
- if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
- String date = map.get("statisticalMonth").toString();
- date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
- map.put("statisticalMonth", date);
- } else {
- map.remove("statisticalMonth");
- }
- return wzLandManageDetailsDao.queryList(map);
- }
- @Override
- public int queryTotal(Map<String, Object> map) {
- if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
- map.put("city", city.getName());
- }
- if (map.get("city") != null && map.get("city").toString().equals("全省")) {
- map.remove("city");
- }
- if (map.get("city") != null && map.get("city").toString().equals("")) {
- map.remove("city");
- }
- if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
- map.put("county", city.getName());
- }
- if (map.get("county") != null && map.get("county").toString().equals("区县")) {
- map.remove("county");
- }
- if (map.get("county") != null && map.get("county").toString().equals("")) {
- map.remove("county");
- }
- if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
- String date = map.get("statisticalMonth").toString();
- date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
- map.put("statisticalMonth", date);
- } else {
- map.remove("statisticalMonth");
- }
- return wzLandManageDetailsDao.queryTotal(map);
- }
- @Override
- public List<FloorNoUserVo> queryLeaveUseList(Map<String, Object> map) {
- if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
- map.put("city", city.getName());
- }
- if (map.get("city") != null && map.get("city").toString().equals("全省")) {
- map.remove("city");
- }
- if (map.get("city") != null && map.get("city").toString().equals("")) {
- map.remove("city");
- }
- if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
- map.put("county", city.getName());
- }
- if (map.get("county") != null && map.get("county").toString().equals("区县")) {
- map.remove("county");
- }
- if (map.get("county") != null && map.get("county").toString().equals("")) {
- map.remove("county");
- }
- if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("")) {
- String date = map.get("statisticalMonth").toString();
- date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
- map.put("statisticalMonth", date);
- } else {
- map.remove("statisticalMonth");
- }
- return wzLandManageDetailsDao.queryLeaveUseList(map);
- }
- public void dealMap(Map<String, Object> map) {
- if (map.get("city") != null && !map.get("city").toString().equals("全省") && !map.get("city").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("city").toString());
- map.put("city", city.getName());
- }
- if (map.get("city") != null && map.get("city").toString().equals("全省")) {
- map.remove("city");
- }
- if (map.get("city") != null && map.get("city").toString().equals("")) {
- map.remove("city");
- }
- if (map.get("county") != null && !map.get("county").toString().equals("区县") && !map.get("county").toString().equals("")) {
- OtnAreaEntity city = otnAreaService.queryObjectById(map.get("county").toString());
- map.put("county", city.getName());
- }
- if (map.get("county") != null && map.get("county").toString().equals("区县")) {
- map.remove("county");
- }
- if (map.get("county") != null && map.get("county").toString().equals("")) {
- map.remove("county");
- }
- if (map.get("statisticalMonth") != null && !map.get("statisticalMonth").toString().equals("") && !map.get("statisticalMonth").toString().equals("账期")) {
- String date = map.get("statisticalMonth").toString();
- date = date.substring(0, 4) + "-" + date.substring(4) + "-" + "01";
- map.put("statisticalMonth", date);
- } else {
- map.remove("statisticalMonth");
- }
- }
- @Override
- public List<String> getBuildingNameAlias(Map<String, Object> map) {
- dealMap(map);
- return wzLandManageDetailsDao.getBuildingNameAlias(map);
- }
- @Override
- public List<String> getBuildingNameCode(Query query) {
- dealMap(query);
- return wzLandManageDetailsDao.getBuildingNameCode(query);
- }
- @Override
- public int queryBuildingNameCodeTotal(Query query1) {
- dealMap(query1);
- return wzLandManageDetailsDao.getBuildingNameAliasTotal(query1);
- }
- @Override
- public int getBuildingNameAliasTotal(Query query1) {
- dealMap(query1);
- return wzLandManageDetailsDao.queryBuildingNameCodeTotal(query1);
- }
- }
|