|
@@ -6,23 +6,36 @@ package com.keystar.plane.inspection.service.impl;
|
|
|
* @Describe 报告接口实现类
|
|
|
*/
|
|
|
|
|
|
+import cn.hutool.core.util.ArrayUtil;
|
|
|
import com.keystar.plane.inspection.bo.PlaneInspectionResultBo;
|
|
|
+import com.keystar.plane.inspection.config.MinIoConfig;
|
|
|
+import com.keystar.plane.inspection.constant.MissionConstant;
|
|
|
import com.keystar.plane.inspection.entity.PlanePhotoEntity;
|
|
|
import com.keystar.plane.inspection.mapper.PhotoResultMapper;
|
|
|
import com.keystar.plane.inspection.service.IReportService;
|
|
|
import com.keystar.plane.inspection.service.PhotoResultService;
|
|
|
import com.keystar.plane.inspection.service.PlanePhotoService;
|
|
|
import com.keystar.plane.inspection.service.TangyangDataService;
|
|
|
+import com.keystar.plane.inspection.vo.UploadVo;
|
|
|
import freemarker.cache.ClassTemplateLoader;
|
|
|
import freemarker.template.Configuration;
|
|
|
import freemarker.template.Template;
|
|
|
import freemarker.template.Version;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.apache.commons.fileupload.disk.DiskFileItemFactory;
|
|
|
+import org.apache.commons.io.IOUtils;
|
|
|
+
|
|
|
+import org.apache.commons.fileupload.FileItem;
|
|
|
+
|
|
|
import org.springframework.aop.framework.AopContext;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
+import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
|
+import org.springframework.http.MediaType;
|
|
|
import org.springframework.scheduling.annotation.Async;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.web.multipart.commons.CommonsMultipartFile;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.io.*;
|
|
@@ -33,6 +46,7 @@ import java.util.*;
|
|
|
|
|
|
@Service
|
|
|
@Slf4j
|
|
|
+@RefreshScope
|
|
|
|
|
|
public class ReportServiceImpl implements IReportService {
|
|
|
|
|
@@ -50,6 +64,9 @@ public class ReportServiceImpl implements IReportService {
|
|
|
@Autowired
|
|
|
private PhotoResultService photoResultService;
|
|
|
|
|
|
+ @Value("${report.bucket}")
|
|
|
+ private String bucket;
|
|
|
+
|
|
|
@Autowired
|
|
|
public ReportServiceImpl(MinioService minioService) {
|
|
|
this.minioService = minioService;
|
|
@@ -105,7 +122,7 @@ public class ReportServiceImpl implements IReportService {
|
|
|
Template template = configuration.getTemplate("report.ftl", StandardCharsets.UTF_8.toString());
|
|
|
|
|
|
|
|
|
- mFile = new File("F:\\temp\\1.doc");
|
|
|
+ mFile = new File("唐阳_"+ new SimpleDateFormat("yyyy年MM月").format(mCalendar.getTime()) +"_无人机月度巡检报告.doc");
|
|
|
|
|
|
fileOutputStream = new FileOutputStream(mFile);
|
|
|
|
|
@@ -114,6 +131,27 @@ public class ReportServiceImpl implements IReportService {
|
|
|
template.process(mValueMap, outputStreamWriter);
|
|
|
|
|
|
outputStreamWriter.flush();
|
|
|
+
|
|
|
+
|
|
|
+ DiskFileItemFactory factory = new DiskFileItemFactory(16, null);
|
|
|
+ FileItem fileItem = factory.createItem("file", MediaType.APPLICATION_OCTET_STREAM_VALUE,
|
|
|
+ true, mFile.getName());
|
|
|
+ fileItem.getOutputStream();
|
|
|
+
|
|
|
+ try(InputStream is = new FileInputStream(mFile);
|
|
|
+ OutputStream os = fileItem.getOutputStream()){
|
|
|
+ IOUtils.copy(is, os);
|
|
|
+ }catch (Exception e){
|
|
|
+ mFile.delete();
|
|
|
+ throw e;
|
|
|
+ }
|
|
|
+
|
|
|
+ UploadVo fileVo = new UploadVo();
|
|
|
+ fileVo.setFile(new CommonsMultipartFile(fileItem));
|
|
|
+ fileVo.setBucketName(bucket);
|
|
|
+ SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
|
|
|
+ fileVo.setResourcePath(simpleDateFormat.format(new Date()));
|
|
|
+ minioService.upload(fileVo);
|
|
|
}catch (Exception e) {
|
|
|
|
|
|
if (mFile != null) {
|
|
@@ -141,13 +179,13 @@ public class ReportServiceImpl implements IReportService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void getMonthReport() throws ParseException {
|
|
|
+ public void getMonthReport() throws ParseException, IOException {
|
|
|
|
|
|
genMonthReport();
|
|
|
}
|
|
|
|
|
|
@Async
|
|
|
- public void genMonthReport() throws ParseException {
|
|
|
+ public void genMonthReport() throws ParseException, IOException {
|
|
|
|
|
|
Map<String, String> mFlyCountMap = new HashMap<>();
|
|
|
|
|
@@ -165,41 +203,48 @@ public class ReportServiceImpl implements IReportService {
|
|
|
mSummaryMap.put("TotalPVString", "4624");
|
|
|
|
|
|
mSummaryMap.put("TotalPVPanel", "124848");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredFZ", "16");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredFZPct", "100%");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredPVString", "4624");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredPVStringPct", "100%");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredPVPanel", "124848");
|
|
|
-
|
|
|
- mSummaryMap.put("CoveredPVPanelPct", "100%");
|
|
|
-
|
|
|
- mSummaryMap.put("UncoveredFZ", "0");
|
|
|
-
|
|
|
- mSummaryMap.put("UnCoveredFZPct", "0");
|
|
|
-
|
|
|
- mSummaryMap.put("UncoveredPVString", "0");
|
|
|
-
|
|
|
- mSummaryMap.put("UncoveredPVStringPct", "0");
|
|
|
-
|
|
|
- mSummaryMap.put("UncoveredPVPanel", "0");
|
|
|
-
|
|
|
- mSummaryMap.put("UncoveredPVPanelPct", "0");
|
|
|
+
|
|
|
+ List<Integer> effectiveMission = planePhotoService.getEffectiveMission();
|
|
|
+ if (effectiveMission.size() == 3){
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredFZ", "16");
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredFZPct", "100%");
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredPVString", "4624");
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredPVStringPct", "100%");
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredPVPanel", "124848");
|
|
|
+
|
|
|
+ mSummaryMap.put("CoveredPVPanelPct", "100%");
|
|
|
+
|
|
|
+ mSummaryMap.put("UncoveredFZ", "0");
|
|
|
+
|
|
|
+ mSummaryMap.put("UnCoveredFZPct", "0%");
|
|
|
+
|
|
|
+ mSummaryMap.put("UncoveredPVString", "0");
|
|
|
+
|
|
|
+ mSummaryMap.put("UncoveredPVStringPct", "0%");
|
|
|
+
|
|
|
+ mSummaryMap.put("UncoveredPVPanel", "0");
|
|
|
+
|
|
|
+ mSummaryMap.put("UncoveredPVPanelPct", "0%");
|
|
|
+ }
|
|
|
|
|
|
-
|
|
|
- Integer FltFZ = planePhotoService.getFltFZ();
|
|
|
- mSummaryMap.put("FltFZ", FltFZ.toString());
|
|
|
- double FltFZPct = (FltFZ.doubleValue() / 16.0) * 100.0;
|
|
|
-
|
|
|
- mSummaryMap.put("FltFZPct", Double.toString(FltFZPct));
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
+
|
|
|
+ List<PlanePhotoEntity> photoEntityList = planePhotoService.queryNewRecordByMission();
|
|
|
|
|
|
+
|
|
|
Integer DioFZ = 0,DioPVString = 0,DioPVPanel = 0;
|
|
|
- List<PlanePhotoEntity> photoEntityList = planePhotoService.queryNewRecordByMission();
|
|
|
for (PlanePhotoEntity photoEntity : photoEntityList){
|
|
|
Integer recordId = photoEntity.getRecordId();
|
|
|
DioFZ = DioFZ + photoResultMapper.queryFltPz(recordId, "diodeFault").size();
|
|
@@ -209,15 +254,15 @@ public class ReportServiceImpl implements IReportService {
|
|
|
|
|
|
mSummaryMap.put("DioFZ", Integer.toString(DioFZ));
|
|
|
|
|
|
- mSummaryMap.put("DioFZPct", Double.toString((FltFZ.doubleValue() / 16.0) * 100.0));
|
|
|
+ mSummaryMap.put("DioFZPct", String.format("%.2f",(DioFZ.doubleValue() / 16.0) * 100.0) + "%");
|
|
|
|
|
|
mSummaryMap.put("DioPVString", Integer.toString(DioPVString));
|
|
|
|
|
|
- mSummaryMap.put("DioPVStringPct", Double.toString((DioPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
+ mSummaryMap.put("DioPVStringPct", String.format("%.2f",(DioPVString.doubleValue() / 4624.0) * 100.0) + "%");
|
|
|
|
|
|
mSummaryMap.put("DioPVPanel", Integer.toString(DioPVPanel));
|
|
|
|
|
|
- mSummaryMap.put("DioPVPanelPct", Double.toString((DioPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+ mSummaryMap.put("DioPVPanelPct", String.format("%.2f",(DioPVPanel.doubleValue() / 124848.0) * 100.0) + "%");
|
|
|
|
|
|
|
|
|
Integer HtsptFZ = 0,HtsptPVString = 0,HtsptPVPanel = 0;
|
|
@@ -230,15 +275,20 @@ public class ReportServiceImpl implements IReportService {
|
|
|
|
|
|
mSummaryMap.put("HtsptFZ", Integer.toString(HtsptFZ));
|
|
|
|
|
|
- mSummaryMap.put("HtsptFZPct", Double.toString((HtsptFZ.doubleValue() / 16.0) * 100.0));
|
|
|
+ if (HtsptFZ > 16){
|
|
|
+ mSummaryMap.put("HtsptFZPct", "100.0" + "%");
|
|
|
+ }else {
|
|
|
+ mSummaryMap.put("HtsptFZPct", String.format("%.2f", (HtsptFZ.doubleValue() / 16.0) * 100.0) + "%" );
|
|
|
+ }
|
|
|
|
|
|
mSummaryMap.put("HtsptPVString", Integer.toString(HtsptPVString));
|
|
|
|
|
|
- mSummaryMap.put("HtsptPVStringPct", Double.toString((HtsptPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
+ mSummaryMap.put("HtsptPVStringPct", String.format("%.2f", (HtsptPVString.doubleValue() / 4624.0) * 100.0) + "%");
|
|
|
|
|
|
mSummaryMap.put("HtsptPVPanel", Integer.toString(HtsptPVPanel));
|
|
|
|
|
|
- mSummaryMap.put("HtsptPVPanelPct", Double.toString((HtsptPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+ mSummaryMap.put("HtsptPVPanelPct", String.format("%.2f", (HtsptPVPanel.doubleValue() / 124848.0) * 100.0) + "%");
|
|
|
+
|
|
|
|
|
|
|
|
|
mSummaryMap.put("OcFZ", "0");
|
|
@@ -253,18 +303,39 @@ public class ReportServiceImpl implements IReportService {
|
|
|
|
|
|
mSummaryMap.put("OcPVPanelPct", "0%");
|
|
|
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Integer FltFZ = 0, FltPVString = 0, FltPVPanel = 0;
|
|
|
+ for (PlanePhotoEntity photoEntity : photoEntityList){
|
|
|
+ Integer recordId = photoEntity.getRecordId();
|
|
|
+ FltFZ = FltFZ + photoResultMapper.queryFltPz(recordId, null).size();
|
|
|
+ FltPVString = FltPVString + photoResultMapper.queryFltPVString(recordId, null).size();
|
|
|
+ FltPVPanel = FltPVPanel + photoResultMapper.queryFltPVPanel(recordId, null).size();
|
|
|
+ }
|
|
|
+
|
|
|
+ mSummaryMap.put("FltFZ", Integer.toString(FltFZ));
|
|
|
+
|
|
|
+ mSummaryMap.put("FltFZPct", String.format("%.2f", (FltFZ.doubleValue() / 16.0) * 100.0) + "%");
|
|
|
|
|
|
- Integer FltPVString = DioPVString + HtsptPVString;
|
|
|
- mSummaryMap.put("FltPVString", String.valueOf(FltPVString));
|
|
|
+ mSummaryMap.put("FltPVString", Integer.toString(FltPVString));
|
|
|
|
|
|
- mSummaryMap.put("FltPVStringPct", Double.toString((FltPVString.doubleValue() / 4624.0) * 100.0));
|
|
|
-
|
|
|
+ mSummaryMap.put("FltPVStringPct", String.format("%.2f", (FltPVString.doubleValue() / 4624.0) * 100.0) + "%");
|
|
|
|
|
|
- Integer FltPVPanel = DioPVPanel + HtsptPVPanel;
|
|
|
- mSummaryMap.put("FltPVPanel", String.valueOf(FltPVPanel));
|
|
|
+ mSummaryMap.put("FltPVPanel", Integer.toString(FltPVPanel));
|
|
|
|
|
|
- mSummaryMap.put("FltPVPanelPct", Double.toString((FltPVPanel.doubleValue() / 124848.0) * 100.0));
|
|
|
+ mSummaryMap.put("FltPVPanelPct", String.format("%.2f", (FltPVPanel.doubleValue() / 124848.0) * 100.0) + "%");
|
|
|
|
|
|
|
|
|
|