From b20fd29dc3864405af4afa0aeb99d13d74fbfcdc Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期四, 21 三月 2024 15:07:44 +0800 Subject: [PATCH] 解决导出xls异常 --- src/main/java/com/lf/server/service/sys/ReportService.java | 474 +++++++++++++++++++++++++++++++++++++++-------------------- 1 files changed, 314 insertions(+), 160 deletions(-) diff --git a/src/main/java/com/lf/server/service/sys/ReportService.java b/src/main/java/com/lf/server/service/sys/ReportService.java index 1790071..376bd4c 100644 --- a/src/main/java/com/lf/server/service/sys/ReportService.java +++ b/src/main/java/com/lf/server/service/sys/ReportService.java @@ -1,6 +1,8 @@ package com.lf.server.service.sys; +import com.lf.server.entity.all.RedisCacheKey; import com.lf.server.entity.all.StaticData; +import com.lf.server.entity.ctrl.CoordinateEntity; import com.lf.server.entity.ctrl.CountEntity; import com.lf.server.entity.data.DownloadEntity; import com.lf.server.entity.sys.AttachEntity; @@ -8,31 +10,52 @@ import com.lf.server.entity.sys.UserEntity; import com.lf.server.helper.*; import com.lf.server.mapper.sys.ReportMapper; +import com.lf.server.service.all.RedisService; +import com.lf.server.service.data.DirService; import com.lf.server.service.data.DownloadService; -import org.springframework.beans.factory.annotation.Autowired; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Service; +import org.springframework.util.StringUtils; +import javax.annotation.Resource; import javax.servlet.http.HttpServletResponse; import java.io.File; +import java.lang.reflect.Method; import java.util.*; /** * 鎶ュ憡妯℃澘 + * * @author WWW + * @date 2024-03-06 */ @Service +@SuppressWarnings("ALL") public class ReportService implements ReportMapper { - @Autowired + @Value("${sys.turfServer}") + private String turfServer; + + @Resource ReportMapper reportMapper; - @Autowired + @Resource AttachService attachService; - @Autowired + @Resource PathHelper pathHelper; - @Autowired + @Resource DownloadService downloadService; + + @Resource + RedisService redisService; + + @Resource + DirService dirService; + + private final static Log log = LogFactory.getLog(ReportService.class); @Override public Integer selectCount(String name, String code) { @@ -115,13 +138,175 @@ @Override public List<CountEntity> countExplorationPoints() { - return reportMapper.countExplorationPoints(); + String key = RedisCacheKey.dataCountKey("countExplorationPoints"); + List<CountEntity> list = redisService.getListByKey(key); + if (null == list) { + list = reportMapper.countExplorationPoints(); + countExplorationArea(list); + redisService.saveListByKey(key, list, StaticData.I2); + } + + return list; + } + + @Override + public List<CoordinateEntity> selectExplorationPoints(String code) { + return reportMapper.selectExplorationPoints(StringHelper.getRightLike(code)); + } + + @Override + public List<CountEntity> countDemAreaByPrj() { + return reportMapper.countDemAreaByPrj(); + } + + @Override + public List<CountEntity> countMptAreaByPrj() { + return reportMapper.countMptAreaByPrj(); + } + + @Override + public List<CountEntity> countOsgbAreaByPrj() { + return reportMapper.countOsgbAreaByPrj(); + } + + @Override + public List<CountEntity> countLasAreaByPrj() { + return reportMapper.countLasAreaByPrj(); + } + + @Override + public List<CountEntity> countSurveyWorksiteByPrj() { + return reportMapper.countSurveyWorksiteByPrj(); + } + + @Override + public List<CountEntity> countExplorationReportByPrj() { + return reportMapper.countExplorationReportByPrj(); + } + + @Override + public List<CountEntity> countCollapseByPrj() { + return reportMapper.countCollapseByPrj(); + } + + @Override + public List<CountEntity> countDebrisFlowByPrj() { + return reportMapper.countDebrisFlowByPrj(); + } + + @Override + public List<CountEntity> countGroundCollapseByPrj() { + return reportMapper.countGroundCollapseByPrj(); + } + + @Override + public List<CountEntity> countHighSteepSlopeByPrj() { + return reportMapper.countHighSteepSlopeByPrj(); + } + + @Override + public List<CountEntity> countLandSlideByPrj() { + return reportMapper.countLandSlideByPrj(); + } + + @Override + public List<CountEntity> countUnstableSlopeByPrj() { + return reportMapper.countUnstableSlopeByPrj(); + } + + @Override + public List<CountEntity> countWaterDamageByPrj() { + return reportMapper.countWaterDamageByPrj(); + } + + @Override + public List<CountEntity> countDlgAreaByPrj() { + return reportMapper.countDlgAreaByPrj(); + } + + @Override + public List<CountEntity> countDomAreaByPrj() { + return reportMapper.countDomAreaByPrj(); + } + + @Override + public List<CountEntity> countLineLength() { + return reportMapper.countLineLength(); + } + + @Override + public List<CountEntity> countExplorationPointByPrj() { + return reportMapper.countExplorationPointByPrj(); + } + + @Override + public List<CountEntity> countGeoModelAreaByPrj() { + return reportMapper.countGeoModelAreaByPrj(); + } + + @Override + public List<CountEntity> countGeologicHazardByPrj() { + return reportMapper.countGeologicHazardByPrj(); + } + + @Override + public List<CountEntity> countVariousDataByPrj(String code) { + code = StringHelper.getRightLike(code); + return reportMapper.countVariousDataByPrj(code); + } + + /** + * 缁熻閽诲瓟鐐归潰绉� + */ + private void countExplorationArea(List<CountEntity> list) { + if (null == list) { + return; + } + for (CountEntity ce : list) { + if (0 == ce.getCount()) { + continue; + } + + double area = calcPolygonArea(ce.getM3()); + ce.setArea(area); + } + } + + /** + * 璁$畻澶氳竟褰㈤潰绉� + */ + private double calcPolygonArea(String code) { + try { + String url = turfServer + "/Call/CalcArea?code=" + code; + String str = RestHelper.get(url); + if (StringHelper.isEmpty(str)) { + return 0d; + } + + return Double.parseDouble(str); + } catch (Exception ex) { + log.error(ex.getMessage(), ex); + return 0d; + } + } + + /** + * 璋冪敤JS鏂规硶 * + */ + private double callJsFn(String str) { + String staticPath = PathHelper.getStaticPath(); + Object obj = JsHelper.callJsFn(staticPath + "js/turf.min.6.5.js", "pointsToPolygon", str); + if (null == obj) { + return 0d; + } + + return (double) obj; } /** * 鍒涘缓鎶ュ憡 */ - public void createReport(UserEntity ue, ReportEntity re, HttpServletResponse res) throws Exception { + public void createReport(UserEntity ue, ReportEntity re, String code, HttpServletResponse res) throws Exception { AttachEntity ae = attachService.selectByGuid(re.getGuid()); if (null == ae) { return; @@ -135,7 +320,7 @@ if (!sourceFile.exists() || sourceFile.isDirectory()) { return; } - generateReport(source, target, re); + generateReport(source, target, re, code); File targetFile = new File(target); if (!targetFile.exists() || sourceFile.isDirectory()) { @@ -152,199 +337,168 @@ /** * 鐢熸垚鎶ュ憡 */ - private void generateReport(String source, String target, ReportEntity re) { + private void generateReport(String source, String target, ReportEntity re, String code) { if (StaticData.S1.equals(re.getType())) { - switch (re.getCode()) { - case "countOperates": - createCountOperatesWord(source, target); - break; - case "countSizes": - createCountSizesWord(source, target); - break; - case "countServices": - createCountServicesWord(source, target); - break; - case "countExplorationPoints": - createCountExplorationPointsWord(source, target); - break; - default: - break; - } + createWord(source, target, re, code); } else { + createExcel(source, target, re, code); + } + } + + /** + * 鐢熸垚Word + */ + private void createWord(String source, String target, ReportEntity re, String code) { + List<CountEntity> list = selectListByMethodName(re, code); + list = processListData(list); + + Map<String, String> textMap = new HashMap<>(); + if (!StringHelper.isEmpty(code)) { + textMap.put("title", dirService.selectNameByCode(code)); + list.remove(list.size() - 1); + } + + List<String[]> tableList = new ArrayList<>(); + for (CountEntity ce : list) { switch (re.getCode()) { - case "countOperates": - createCountOperatesExcel(source, target); + case "countSizesByType": + case "countSizesByPrj": + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), "" + ce.getCount(), ce.getM2()}); break; case "countSizes": - createCountSizesExcel(source, target); + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), ce.getM2()}); break; - case "countServices": - createCountServicesExcel(source, target); + case "countOperates": + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), ce.getM2(), "" + ce.getCount()}); break; case "countExplorationPoints": - createCountExplorationPointsExcel(source, target); + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), "" + ce.getCount(), ce.getM2(), ce.getM3()}); + break; + case "countDemAreaByPrj": + case "countMptAreaByPrj": + case "countOsgbAreaByPrj": + case "countLasAreaByPrj": + case "countDlgAreaByPrj": + case "countDomAreaByPrj": + case "countGeoModelAreaByPrj": + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), ce.getM3()}); + break; + case "countLineLength": + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), "" + ce.getLen()}); + break; + case "countVariousDataByPrj": + String str = "count".equals(ce.getM2()) ? ce.getCount() + "涓�" : ("area".equals(ce.getM2()) ? ce.getM3() : ce.getLen() + "鍗冪背"); + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), str}); break; default: + tableList.add(new String[]{"" + ce.getNo(), ce.getM1(), "" + ce.getCount()}); break; } } + + WordHelper.generateWord(source, target, textMap, tableList); } /** - * 鍒涘缓 鐢ㄦ埛娴侀噺缁熻 Word + * 鐢熸垚Excel */ - public void createCountOperatesWord(String source, String target) { - List<CountEntity> list = countOperates(); - if (null == list || list.isEmpty()) { - return; + private void createExcel(String source, String target, ReportEntity re, String code) { + List<CountEntity> list = selectListByMethodName(re, code); + list = processListData(list); + + Map<String, Object> map = new HashMap<>(); + if (!StringHelper.isEmpty(code)) { + map.put("title", dirService.selectNameByCode(code)); + list.remove(list.size() - 1); + for (CountEntity ce : list) { + ce.setM2("count".equals(ce.getM2()) ? ce.getCount() + "涓�" : ("area".equals(ce.getM2()) ? ce.getM3() : ce.getLen() + "鍗冪背")); + } } - int rows = 1; - ArrayList<String[]> addList = new ArrayList<>(); - for (CountEntity ce : list) { - String[] strs = new String[]{"" + rows++, ce.getM1(), ce.getM2(), ce.getCount().toString()}; - addList.add(strs); - } + Map<String, List<CountEntity>> listMap = new HashMap<>(1); + listMap.put("data", list); - WordHelper.generateWord(source, target, null, addList); + ExcelHelper.writeToTemplate(source, target, map, listMap); } /** - * 鍒涘缓 鏈嶅姟璋冪敤閲忕粺璁� Word + * 澶勭悊鍒楄〃鏁版嵁 */ - public void createCountServicesWord(String source, String target) { - List<CountEntity> list = countServices(); + private List<CountEntity> processListData(List<CountEntity> list) { if (null == list || list.isEmpty()) { - return; + return null; } int rows = 1; - ArrayList<String[]> addList = new ArrayList<>(); - for (CountEntity ce : list) { - String[] strs = new String[]{"" + rows++, ce.getM1(), ce.getCount().toString()}; - addList.add(strs); - } - - WordHelper.generateWord(source, target, null, addList); - } - - /** - * 鍒涘缓 鏁版嵁閲忕粺璁� Word - */ - public void createCountSizesWord(String source, String target) { - List<CountEntity> list = countSizes(); - if (null == list || list.isEmpty()) { - return; - } - - int rows = 1; - ArrayList<String[]> addList = new ArrayList<>(); - for (CountEntity ce : list) { - String[] strs = new String[]{"" + rows++, ce.getM1(), FileHelper.getSizes(ce.getSizes())}; - addList.add(strs); - } - - WordHelper.generateWord(source, target, null, addList); - } - - /** - * 鍒涘缓 閽诲瓟鏁版嵁缁熻 Word - */ - public void createCountExplorationPointsWord(String source, String target) { - List<CountEntity> list = countExplorationPoints(); - if (null == list || list.isEmpty()) { - return; - } - - int rows = 1; - ArrayList<String[]> addList = new ArrayList<>(); - for (CountEntity ce : list) { - String[] strs = new String[]{"" + rows++, ce.getM1(), "" + ce.getCount(), FileHelper.getSizes(ce.getSizes())}; - addList.add(strs); - } - - WordHelper.generateWord(source, target, null, addList); - } - - /** - * 鍒涘缓 鐢ㄦ埛娴侀噺缁熻 Excel - */ - public void createCountOperatesExcel(String source, String target) { - List<CountEntity> list = countOperates(); - if (null == list || list.isEmpty()) { - return; - } - - int rows = 1; + long allCount = 0; + Double allSize = 0d, allArea = 0d, allLen = 0d; for (CountEntity ce : list) { ce.setNo(rows++); + if (StringUtils.isEmpty(ce.getM2())) { + ce.setM2(FileHelper.getSizes(ce.getSizes())); + } + ce.setM3(FileHelper.getSquareMeter(ce.getArea())); + allCount += ce.getCount(); + allSize += ce.getSizes(); + allArea += ce.getArea(); + allLen += ce.getLen(); + } + if (list.size() > 0) { + CountEntity ce = new CountEntity(); + ce.setNo(rows); + ce.setM1("鎬昏"); + ce.setCount(allCount); + if (StringUtils.isEmpty(list.get(0).getM2())) { + ce.setM2(FileHelper.getSizes(allSize)); + } + ce.setM3(FileHelper.getSquareMeter(allArea)); + ce.setLen(allLen); + list.add(ce); } - Map<String, List<CountEntity>> map = new HashMap<>(1); - map.put("data", list); - - ExcelHelper.writeToTemplate(source, target, map); + return list; } /** - * 鍒涘缓 鏈嶅姟璋冪敤閲忕粺璁� Excel + * 鏍规嵁鏂规硶鍚嶇О鏌ヨ鏁版嵁鍒楄〃 */ - public void createCountServicesExcel(String source, String target) { - List<CountEntity> list = countServices(); + private List<CountEntity> selectListByMethodName(ReportEntity re, String code) { + List<CountEntity> list = null; + try { + Object obj; + if (null != code) { + Method method = ReportService.class.getDeclaredMethod(re.getCode(), String.class); + obj = method.invoke(this, code); + } else { + Method method = ReportService.class.getDeclaredMethod(re.getCode()); + obj = method.invoke(this); + } + if (obj instanceof List<?>) { + list = (List<CountEntity>) obj; + } + } catch (Exception ex) { + log.error(ex.getMessage(), ex); + } + if (null == list || list.isEmpty()) { - return; + return list; } - - int rows = 1; for (CountEntity ce : list) { - ce.setNo(rows++); + if (null == ce.getCount()) { + ce.setCount(0L); + } + if (null == ce.getSizes()) { + ce.setSizes(0d); + } + if (null == ce.getArea()) { + ce.setArea(0d); + } + if (null == ce.getLen()) { + ce.setLen(0d); + } } - Map<String, List<CountEntity>> map = new HashMap<>(1); - map.put("data", list); - - ExcelHelper.writeToTemplate(source, target, map); - } - - /** - * 鍒涘缓 鏁版嵁閲忕粺璁� Excel - */ - public void createCountSizesExcel(String source, String target) { - List<CountEntity> list = countSizes(); - if (null == list || list.isEmpty()) { - return; - } - - int rows = 1; - for (CountEntity ce : list) { - ce.setNo(rows++); - ce.setM2(FileHelper.getSizes(ce.getSizes())); - } - - Map<String, List<CountEntity>> map = new HashMap<>(1); - map.put("data", list); - - ExcelHelper.writeToTemplate(source, target, map); - } - - /** - * 鍒涘缓 閽诲瓟鏁版嵁缁熻 Excel - */ - public void createCountExplorationPointsExcel(String source, String target) { - List<CountEntity> list = countExplorationPoints(); - if (null == list || list.isEmpty()) { - return; - } - - int rows = 1; - for (CountEntity ce : list) { - ce.setNo(rows++); - } - - Map<String, List<CountEntity>> map = new HashMap<>(1); - map.put("data", list); - - ExcelHelper.writeToTemplate(source, target, map); + return list; } /** -- Gitblit v1.9.3