Browse Source

生成酒店报告代码提交

lixing 3 years ago
parent
commit
9450ce5c87
17 changed files with 194 additions and 187 deletions
  1. 10 6
      src/main/java/com/persagy/apm/energy/report/monthly/config/function/model/dto/QueryFunctionDTO.java
  2. 9 13
      src/main/java/com/persagy/apm/energy/report/monthly/config/function/service/impl/FunctionServiceImpl.java
  3. 9 2
      src/main/java/com/persagy/apm/energy/report/monthly/detail/common/model/vo/CostItemVO.java
  4. 26 32
      src/main/java/com/persagy/apm/energy/report/monthly/detail/common/service/impl/ReportCostInfoServiceImpl.java
  5. 2 2
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectCostInfo.java
  6. 2 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceGraph.java
  7. 19 15
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/service/impl/HotelProjectReportCostServiceImpl.java
  8. 1 1
      src/main/java/com/persagy/apm/energy/report/monthly/functionvalue/service/IFunctionValueService.java
  9. 5 2
      src/main/java/com/persagy/apm/energy/report/monthly/functionvalue/service/impl/FunctionValueServiceImpl.java
  10. 2 11
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/business/IBusinessReportBuilder.java
  11. 2 27
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/business/impl/BusinessReportBuilder.java
  12. 48 0
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/common/IReportBuilder.java
  13. 51 0
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/common/impl/ReportBuilder.java
  14. 2 10
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/IHotelAreaReportBuilder.java
  15. 2 10
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/IHotelProjectReportBuilder.java
  16. 2 27
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/impl/HotelAreaReportBuilder.java
  17. 2 29
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/impl/HotelProjectReportBuilder.java

+ 10 - 6
src/main/java/com/persagy/apm/energy/report/monthly/config/function/model/dto/QueryFunctionDTO.java

@@ -5,6 +5,7 @@ import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 
 import java.util.Date;
+import java.util.List;
 
 /**
  * @author lixing
@@ -13,22 +14,25 @@ import java.util.Date;
 @Data
 @ApiModel(value = "查询能耗报告信息点入参")
 public class QueryFunctionDTO {
-    @ApiModelProperty(value = "集团编码", required = true)
+    @ApiModelProperty(value = "功能点id列表")
+    private List<String> functionIdList;
+    
+    @ApiModelProperty(value = "集团编码")
     private String groupCode;
 
-    @ApiModelProperty(value = "能耗类型", required = true)
+    @ApiModelProperty(value = "能耗类型")
     private String energyType;
 
-    @ApiModelProperty(value = "建筑类型(业态)", required = true)
+    @ApiModelProperty(value = "建筑类型(业态)")
     private String buildingType;
 
-    @ApiModelProperty(value = "信息点类型(0-能耗,1-费用 ,2-能耗预算,3-费用预算)", required = true)
+    @ApiModelProperty(value = "信息点类型(0-能耗,1-费用 ,2-能耗预算,3-费用预算)")
     private String functionType;
 
-    @ApiModelProperty(value = "能耗模型编码", required = true)
+    @ApiModelProperty(value = "能耗模型编码")
     private String modelCode;
 
-    @ApiModelProperty(value = "分项id", required = true)
+    @ApiModelProperty(value = "分项id")
     private String itemId;
 
 }

+ 9 - 13
src/main/java/com/persagy/apm/energy/report/monthly/config/function/service/impl/FunctionServiceImpl.java

@@ -158,34 +158,30 @@ public class FunctionServiceImpl extends ServiceImpl<FunctionMapper, Function>
 
         if (queryFunctionDTO != null) {
 
-            // todo 需判断使用like还是eq
+            if (!CollectionUtils.isEmpty(queryFunctionDTO.getFunctionIdList())) {
+                queryWrapper.in(Function.PROP_ID, queryFunctionDTO.getFunctionIdList());
+            }
             if (StringUtils.isNotEmpty(queryFunctionDTO.getGroupCode())) {
-                queryWrapper.like(Function.PROP_GROUP_CODE, queryFunctionDTO.getGroupCode());
+                queryWrapper.eq(Function.PROP_GROUP_CODE, queryFunctionDTO.getGroupCode());
             }
-
-            // todo 需判断使用like还是eq
             if (StringUtils.isNotEmpty(queryFunctionDTO.getEnergyType())) {
-                queryWrapper.like(Function.PROP_ENERGY_TYPE, queryFunctionDTO.getEnergyType());
+                queryWrapper.eq(Function.PROP_ENERGY_TYPE, queryFunctionDTO.getEnergyType());
             }
 
-            // todo 需判断使用like还是eq
             if (StringUtils.isNotEmpty(queryFunctionDTO.getBuildingType())) {
-                queryWrapper.like(Function.PROP_BUILDING_TYPE, queryFunctionDTO.getBuildingType());
+                queryWrapper.eq(Function.PROP_BUILDING_TYPE, queryFunctionDTO.getBuildingType());
             }
 
-            // todo 需判断使用like还是eq
             if (StringUtils.isNotEmpty(queryFunctionDTO.getFunctionType())) {
-                queryWrapper.like(Function.PROP_FUNCTION_TYPE, queryFunctionDTO.getFunctionType());
+                queryWrapper.eq(Function.PROP_FUNCTION_TYPE, queryFunctionDTO.getFunctionType());
             }
 
-            // todo 需判断使用like还是eq
             if (StringUtils.isNotEmpty(queryFunctionDTO.getModelCode())) {
-                queryWrapper.like(Function.PROP_MODEL_CODE, queryFunctionDTO.getModelCode());
+                queryWrapper.eq(Function.PROP_MODEL_CODE, queryFunctionDTO.getModelCode());
             }
 
-            // todo 需判断使用like还是eq
             if (StringUtils.isNotEmpty(queryFunctionDTO.getItemId())) {
-                queryWrapper.like(Function.PROP_ITEM_ID, queryFunctionDTO.getItemId());
+                queryWrapper.eq(Function.PROP_ITEM_ID, queryFunctionDTO.getItemId());
             }
 
         }

+ 9 - 2
src/main/java/com/persagy/apm/energy/report/monthly/detail/common/model/vo/CostItemVO.java

@@ -39,10 +39,10 @@ public class CostItemVO {
     @ApiModelProperty("环比增幅")
     public Double linkRange;
 
-    @ApiModelProperty("同比增量")
+    @ApiModelProperty("同期累计同比增量")
     public Double sameCount;
 
-    @ApiModelProperty("同比增幅")
+    @ApiModelProperty("同期累计同比增幅")
     public Double sameRange;
 
     @ApiModelProperty("本年单方能源费")
@@ -51,4 +51,11 @@ public class CostItemVO {
     @ApiModelProperty("去年单方能源费")
     public Double lastYearPerCount;
 
+
+    @ApiModelProperty("去年同期单月同比增量")
+    public Double sameTimeGrowth;
+
+    @ApiModelProperty("去年同期单月同比增幅")
+    public Double sameTimeRange;
+
 }

+ 26 - 32
src/main/java/com/persagy/apm/energy/report/monthly/detail/common/service/impl/ReportCostInfoServiceImpl.java

@@ -7,17 +7,12 @@ import com.persagy.apm.energy.report.monthly.config.function.model.Function;
 import com.persagy.apm.energy.report.monthly.config.function.service.IFunctionService;
 import com.persagy.apm.energy.report.monthly.config.functiongroup.model.FunctionGroup;
 import com.persagy.apm.energy.report.monthly.config.functiongroup.service.IFunctionGroupService;
-import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportCostInfoService;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
-import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostVO;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.GroupInfo;
 import com.persagy.apm.energy.report.monthly.detail.common.service.IReportCostInfoService;
 import com.persagy.apm.energy.report.monthly.functionvalue.service.IFunctionValueService;
-import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
-import com.persagy.apm.energy.report.monthly.outline.service.IReportOutlineService;
 import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
 import com.persagy.apm.energy.report.saasweb.service.ISaasWebService;
-import org.apache.commons.lang.StringUtils;
 import org.assertj.core.util.Lists;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
@@ -26,7 +21,6 @@ import org.springframework.util.CollectionUtils;
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
-import java.util.stream.Collectors;
 
 /**
  * 商业类报告费用service类
@@ -106,36 +100,25 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
         if (FunctionTypeEnum.COST.getType().equals(functionType)) {
             unit = 10000d;
         }
-        
-        CostItemVO costItemVO = new CostItemVO();
-        String currentMonthStr = functionValueService.getFunctionValue(functionId, reportMonth, projectId);
-        Double currentMonth = null;
 
-        if (StringUtils.isNotBlank(currentMonthStr)) {
-            currentMonth = Double.valueOf(currentMonthStr);
-            costItemVO.setCurrentMonth(DataUtils.doubleDivide(currentMonth, unit));
-        }
-        String lastMonthStr = functionValueService.getFunctionValue(
+        CostItemVO costItemVO = new CostItemVO();
+        Double currentMonth = functionValueService.getFunctionValue(functionId, reportMonth, projectId);
+        costItemVO.setCurrentMonth(DataUtils.doubleDivide(currentMonth, unit));
+        Double lastMonth = functionValueService.getFunctionValue(
                 functionId, DateUtils.getFirstDayOfLastMonth(reportMonth), projectId);
-        Double lastMonth = null;
-        if (StringUtils.isNotBlank(lastMonthStr)) {
-            lastMonth = Double.valueOf(lastMonthStr);
-            costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, unit));
-        }
+        costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, unit));
 
-        // 统计去年同期费用
+        // 统计去年同期累计费用
         Double lastYearCount = null;
+        Date lastYearSameTime = DateUtils.getSameMonthFirstDayOfLastYear(reportMonth);
         List<Date> lastYearMonths = DateUtils.getFirstDayOfEveryMonth(
                 DateUtils.getFirstDayOfLastYear(reportMonth),
-                DateUtils.getSameMonthFirstDayOfLastYear(reportMonth));
+                lastYearSameTime);
         List<CostItemVO> lastYearItems = new ArrayList<>();
         for (Date lastYearMonth : lastYearMonths) {
             CostItemVO tmp = new CostItemVO();
-            String monthValue = functionValueService.getFunctionValue(functionId, lastYearMonth, projectId);
-            if (StringUtils.isNotBlank(monthValue)) {
-                tmp.setLastYearCount(Double.parseDouble(monthValue));
-                lastYearItems.add(tmp);
-            }
+            tmp.setLastYearCount(functionValueService.getFunctionValue(functionId, lastYearMonth, projectId));
+            lastYearItems.add(tmp);
         }
         Double zero = 0d;
         CostItemVO lastYearSumItem = getCostSum(lastYearItems);
@@ -157,11 +140,8 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
         List<CostItemVO> yearItems = new ArrayList<>();
         for (Date yearMonth : yearMonths) {
             CostItemVO tmp = new CostItemVO();
-            String monthValue = functionValueService.getFunctionValue(functionId, yearMonth, projectId);
-            if (StringUtils.isNotBlank(monthValue)) {
-                tmp.setYearCount(Double.parseDouble(monthValue));
-                yearItems.add(tmp);
-            }
+            tmp.setYearCount(functionValueService.getFunctionValue(functionId, yearMonth, projectId));
+            yearItems.add(tmp);
         }
 
         CostItemVO yearSumItem = getCostSum(yearItems);
@@ -175,6 +155,7 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
             }
         }
 
+        // 环比
         if (currentMonth != null && lastMonth != null) {
             Double linkCount = DataUtils.doubleSubtract(currentMonth, lastMonth);
             Double linkRange = DataUtils.doubleDivide(linkCount, lastMonth);
@@ -182,11 +163,24 @@ public class ReportCostInfoServiceImpl implements IReportCostInfoService {
             costItemVO.setLinkRange(linkRange);
         }
 
+        // 累计同比
         if (lastYearCount != null && yearCount != null) {
             double sameCount = DataUtils.doubleSubtract(yearCount, lastYearCount);
             costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, unit));
             costItemVO.setSameRange(DataUtils.doubleDivide(sameCount, lastYearCount));
         }
+
+        // 去年同期月
+        Double lastYearSameTimeValue = functionValueService.getFunctionValue(functionId, lastYearSameTime, projectId);
+
+        if (lastYearSameTimeValue != null && currentMonth != null) {
+            double sameTimeGrowth = DataUtils.doubleSubtract(currentMonth, lastYearSameTimeValue);
+            // 月同比增量
+            costItemVO.setSameTimeGrowth(sameTimeGrowth);
+            // 月同比增幅
+            costItemVO.setSameTimeRange(DataUtils.doubleDivide(sameTimeGrowth, lastYearSameTimeValue));
+        }
+
         return costItemVO;
     }
 

+ 2 - 2
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectCostInfo.java

@@ -22,8 +22,8 @@ public class HotelProjectCostInfo {
     private Double totalCost;
     @ApiModelProperty(value = "单位建筑面积费用")
     private Double costPerSquareMetre;
-    @ApiModelProperty(value = "费用同比涨幅")
-    private Double costYearRange;
+    @ApiModelProperty(value = "费用同比涨幅")
+    private Double costSameTimeRange;
 //    @ApiModelProperty(value = "入住率")
 //    private Double occupancy;
 //    @ApiModelProperty(value = "入住率同比涨幅")

+ 2 - 0
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceGraph.java

@@ -6,6 +6,7 @@ import com.persagy.apm.energy.report.monthly.detail.common.model.vo.DateGraphVO;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
+import lombok.EqualsAndHashCode;
 
 import java.util.List;
 
@@ -13,6 +14,7 @@ import java.util.List;
  * @author lixing
  * @version V1.0 2021/6/8 11:09 上午
  **/
+@EqualsAndHashCode(callSuper = true)
 @Data
 @ApiModel(value = "酒店项目维护信息图表")
 @JsonInclude(JsonInclude.Include.NON_NULL)

+ 19 - 15
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/service/impl/HotelProjectReportCostServiceImpl.java

@@ -1,5 +1,8 @@
 package com.persagy.apm.energy.report.monthly.detail.hotel.project.service.impl;
 
+import com.persagy.apm.energy.report.monthly.config.function.constant.enums.FunctionTypeEnum;
+import com.persagy.apm.energy.report.monthly.config.function.model.Function;
+import com.persagy.apm.energy.report.monthly.config.function.model.dto.QueryFunctionDTO;
 import com.persagy.apm.energy.report.monthly.config.function.service.IFunctionService;
 import com.persagy.apm.energy.report.monthly.config.functiongroup.service.IFunctionGroupService;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
@@ -21,6 +24,7 @@ import org.springframework.util.CollectionUtils;
 import java.math.BigDecimal;
 import java.util.Date;
 import java.util.List;
+import java.util.stream.Collectors;
 
 /**
  * 酒店项目类报告费用service类
@@ -56,7 +60,6 @@ public class HotelProjectReportCostServiceImpl extends ReportCostInfoServiceImpl
         return getCostInfoByProjectId(functionIdList, reportMonth, projectIds.get(0));
     }
 
-
     /**
      * 根据项目id获取费用信息
      *
@@ -80,21 +83,22 @@ public class HotelProjectReportCostServiceImpl extends ReportCostInfoServiceImpl
         List<CostItemVO> costItemInfos = getCostItemInfos(functionIdList, reportMonth, Lists.newArrayList(projectId));
         hotelProjectCostInfo.setItemsCostInfo(costItemInfos);
 
-        CostItemVO costSum = getCostSum(costItemInfos);
+        // 获取信息点类型为费用的信息点
+        QueryFunctionDTO queryFunctionDTO = new QueryFunctionDTO();
+        queryFunctionDTO.setFunctionIdList(functionIdList);
+        queryFunctionDTO.setFunctionType(FunctionTypeEnum.COST.getType());
+        List<Function> costFunctions = functionService.queryFunctionList(queryFunctionDTO);
+
+        if (!CollectionUtils.isEmpty(costFunctions)) {
+            List<String> costFunctionIds = costFunctions.stream().map(Function::getId).collect(Collectors.toList());
+            List<CostItemVO> costFunctionsInfo = getCostItemInfos(costFunctionIds, reportMonth, Lists.newArrayList(projectId));
+            // 总费用相关信息
+            CostItemVO costSum = getCostSum(costFunctionsInfo);
+            hotelProjectCostInfo.setTotalCost(costSum.getCurrentMonth());
+            hotelProjectCostInfo.setCostSameTimeRange(costSum.getSameTimeRange());
+            hotelProjectCostInfo.setCostPerSquareMetre(costSum.getYearPerCount());
+        }
 
-        hotelProjectCostInfo.setTotalCost(costSum.getCurrentMonth());
-        //        hotelProjectCostInfo.setOccupancy();
-        //
-        //        List<CostItemVO> paragraphSums = new ArrayList<>();
-        //
-        //        if (!CollectionUtils.isEmpty(costGroupInfos)) {
-        //            paragraphSums.addAll(
-        //                    costGroupInfos.stream().map(GroupInfo::getSummary).collect(Collectors.toList()));
-        //        }
-        //        if (!CollectionUtils.isEmpty(costItemInfos)) {
-        //            paragraphSums.addAll(costItemInfos);
-        //        }
-        //        costVO.setSummary(getCostSum(paragraphSums));
         return hotelProjectCostInfo;
     }
 

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/functionvalue/service/IFunctionValueService.java

@@ -90,7 +90,7 @@ public interface IFunctionValueService {
      * @author lixing
      * @version V1.0 2021/5/30 9:17 下午
      */
-    String getFunctionValue(String functionId, Date dataTime, String projectId);
+    Double getFunctionValue(String functionId, Date dataTime, String projectId);
 
     /**
      * 分页查询能耗报告信息点取值

+ 5 - 2
src/main/java/com/persagy/apm/energy/report/monthly/functionvalue/service/impl/FunctionValueServiceImpl.java

@@ -197,14 +197,17 @@ public class FunctionValueServiceImpl extends ServiceImpl<FunctionValueMapper, F
     }
 
     @Override
-    public String getFunctionValue(String functionId, Date dataTime, String projectId) {
+    public Double getFunctionValue(String functionId, Date dataTime, String projectId) {
         QueryFunctionValueDTO queryFunctionValueDTO = new QueryFunctionValueDTO();
         queryFunctionValueDTO.setFunctionId(functionId);
         queryFunctionValueDTO.setDataTime(dataTime);
         queryFunctionValueDTO.setProjectId(projectId);
         List<FunctionValue> functionValues = queryFunctionValueList(queryFunctionValueDTO);
         if (!CollectionUtils.isEmpty(functionValues)) {
-            return functionValues.get(0).getValue();
+            String value = functionValues.get(0).getValue();
+            if (StringUtils.isNotBlank(value)) {
+                return Double.valueOf(value);
+            }
         }
         return null;
     }

+ 2 - 11
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/business/IBusinessReportBuilder.java

@@ -5,6 +5,7 @@ import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostVO;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.PowerVO;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.*;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.IReportBuilder;
 
 import java.util.List;
 
@@ -14,17 +15,7 @@ import java.util.List;
  * @author lixing
  * @version V1.0 2021/5/30 10:26 下午
  **/
-public interface IBusinessReportBuilder {
-    /**
-     * 生成报告详情
-     *
-     * @param reportOutline 报告outline对象
-     * @return 是否生成成功
-     * @author lixing
-     * @version V1.0 2021/5/24 4:09 下午
-     */
-    boolean generateNewReportDetail(ReportOutline reportOutline);
-
+public interface IBusinessReportBuilder extends IReportBuilder {
     /**
      * 在营项目用电量信息
      *

+ 2 - 27
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/business/impl/BusinessReportBuilder.java

@@ -12,6 +12,7 @@ import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessRe
 import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPlatformInfoService;
 import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPowerInfoService;
 import com.persagy.apm.energy.report.monthly.outline.service.builder.business.IBusinessReportBuilder;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.impl.ReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Component;
@@ -28,7 +29,7 @@ import java.util.List;
  **/
 @Component
 @Slf4j
-public class BusinessReportBuilder implements IBusinessReportBuilder {
+public class BusinessReportBuilder extends ReportBuilder implements IBusinessReportBuilder {
     @Autowired
     private IReportBusinessDetailService businessDetailService;
     @Autowired
@@ -65,32 +66,6 @@ public class BusinessReportBuilder implements IBusinessReportBuilder {
         }
     }
 
-    /**
-     * 获取段落包含的分组列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph 段落
-     * @return 段落包含的分组列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getGroupsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getGroupsByParagraph(reportTypeId, paragraph);
-    }
-
-    /**
-     * 获取段落包含的功能点列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph 段落
-     * @return 段落包含的功能点列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getFunctionsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getFunctionsByParagraph(reportTypeId, paragraph);
-    }
-
     @Override
     public PowerVO getOpenPowerInfo(ReportOutline reportOutline) {
         List<String> powerGroupIdList = getGroupsByParagraph(

+ 48 - 0
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/common/IReportBuilder.java

@@ -0,0 +1,48 @@
+package com.persagy.apm.energy.report.monthly.outline.service.builder.common;
+
+import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostVO;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.PowerVO;
+import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+
+import java.util.List;
+
+/**
+ * 生成商业报告建造者接口
+ *
+ * @author lixing
+ * @version V1.0 2021/5/30 10:26 下午
+ **/
+public interface IReportBuilder {
+    /**
+     * 生成报告详情
+     *
+     * @param reportOutline 报告outline对象
+     * @return 是否生成成功
+     * @author lixing
+     * @version V1.0 2021/5/24 4:09 下午
+     */
+    boolean generateNewReportDetail(ReportOutline reportOutline);
+
+    /**
+     * 获取段落包含的分组列表
+     *
+     * @param reportTypeId 报告类型id
+     * @param paragraph 段落
+     * @return 段落包含的分组列表
+     * @author lixing
+     * @version V1.0 2021/6/7 11:17 上午
+     */
+    List<String> getGroupsByParagraph(String reportTypeId, String paragraph);
+
+    /**
+     * 获取段落包含的功能点列表
+     *
+     * @param reportTypeId 报告类型id
+     * @param paragraph 段落
+     * @return 段落包含的功能点列表
+     * @author lixing
+     * @version V1.0 2021/6/7 11:17 上午
+     */
+    List<String> getFunctionsByParagraph(String reportTypeId, String paragraph);
+}

+ 51 - 0
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/common/impl/ReportBuilder.java

@@ -0,0 +1,51 @@
+package com.persagy.apm.energy.report.monthly.outline.service.builder.common.impl;
+
+import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
+import com.persagy.apm.energy.report.monthly.detail.business.model.dto.AddReportBusinessDetailDTO;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportCostInfoService;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPlatformInfoService;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPowerInfoService;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IReportBusinessDetailService;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostVO;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.PowerVO;
+import com.persagy.apm.energy.report.monthly.detail.common.service.IReportDetailService;
+import com.persagy.apm.energy.report.monthly.outline.constants.BusinessReportParagraphs;
+import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.business.IBusinessReportBuilder;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.IReportBuilder;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Component;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.transaction.interceptor.TransactionAspectSupport;
+
+import java.util.List;
+
+/**
+ * 商业项目报告建造者
+ *
+ * @author lixing
+ * @version V1.0 2021/5/12 2:53 下午
+ **/
+@Component
+@Slf4j
+public class ReportBuilder implements IReportBuilder {
+    @Autowired
+    private IReportDetailService reportDetailService;
+
+    @Override
+    public boolean generateNewReportDetail(ReportOutline reportOutline) {
+        // 在具体的子类中覆写实现
+        return true;
+    }
+
+    @Override
+    public List<String> getGroupsByParagraph(String reportTypeId, String paragraph) {
+        return reportDetailService.getGroupsByParagraph(reportTypeId, paragraph);
+    }
+
+    @Override
+    public List<String> getFunctionsByParagraph(String reportTypeId, String paragraph) {
+        return reportDetailService.getFunctionsByParagraph(reportTypeId, paragraph);
+    }
+}

+ 2 - 10
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/IHotelAreaReportBuilder.java

@@ -1,6 +1,7 @@
 package com.persagy.apm.energy.report.monthly.outline.service.builder.hotel;
 
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.IReportBuilder;
 
 /**
  * 生成酒店区域报告建造者接口
@@ -8,14 +9,5 @@ import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
  * @author lixing
  * @version V1.0 2021/5/30 10:26 下午
  **/
-public interface IHotelAreaReportBuilder {
-    /**
-     * 生成报告详情
-     *
-     * @param reportOutline 报告outline对象
-     * @return 是否生成成功
-     * @author lixing
-     * @version V1.0 2021/5/24 4:09 下午
-     */
-    boolean generateNewReportDetail(ReportOutline reportOutline);
+public interface IHotelAreaReportBuilder extends IReportBuilder {
 }

+ 2 - 10
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/IHotelProjectReportBuilder.java

@@ -2,6 +2,7 @@ package com.persagy.apm.energy.report.monthly.outline.service.builder.hotel;
 
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.*;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.IReportBuilder;
 
 /**
  * 生成酒店项目报告建造者接口
@@ -9,16 +10,7 @@ import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
  * @author lixing
  * @version V1.0 2021/5/30 10:26 下午
  **/
-public interface IHotelProjectReportBuilder {
-    /**
-     * 生成报告详情
-     *
-     * @param reportOutline 报告outline对象
-     * @return 是否生成成功
-     * @author lixing
-     * @version V1.0 2021/5/24 4:09 下午
-     */
-    boolean generateNewReportDetail(ReportOutline reportOutline);
+public interface IHotelProjectReportBuilder extends IReportBuilder {
 
     /**
      * 获取项目报警处理信息

+ 2 - 27
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/impl/HotelAreaReportBuilder.java

@@ -4,6 +4,7 @@ import com.persagy.apm.energy.report.monthly.detail.common.service.IReportDetail
 import com.persagy.apm.energy.report.monthly.detail.hotel.area.model.dto.AddReportHotelAreaDetailDTO;
 import com.persagy.apm.energy.report.monthly.detail.hotel.area.service.IReportHotelAreaDetailService;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.impl.ReportBuilder;
 import com.persagy.apm.energy.report.monthly.outline.service.builder.hotel.IHotelAreaReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -21,7 +22,7 @@ import java.util.List;
  **/
 @Component
 @Slf4j
-public class HotelAreaReportBuilder implements IHotelAreaReportBuilder {
+public class HotelAreaReportBuilder extends ReportBuilder implements IHotelAreaReportBuilder {
     @Autowired
     private IReportDetailService reportDetailService;
     @Autowired
@@ -42,30 +43,4 @@ public class HotelAreaReportBuilder implements IHotelAreaReportBuilder {
             return false;
         }
     }
-
-    /**
-     * 获取段落包含的分组列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph 段落
-     * @return 段落包含的分组列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getGroupsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getGroupsByParagraph(reportTypeId, paragraph);
-    }
-
-    /**
-     * 获取段落包含的功能点列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph 段落
-     * @return 段落包含的功能点列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getFunctionsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getFunctionsByParagraph(reportTypeId, paragraph);
-    }
 }

+ 2 - 29
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/impl/HotelProjectReportBuilder.java

@@ -7,6 +7,7 @@ import com.persagy.apm.energy.report.monthly.detail.hotel.project.service.IRepor
 import com.persagy.apm.energy.report.monthly.outline.constants.HotelReportParagraphs;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.service.IHotelProjectReportCostService;
+import com.persagy.apm.energy.report.monthly.outline.service.builder.common.impl.ReportBuilder;
 import com.persagy.apm.energy.report.monthly.outline.service.builder.hotel.IHotelProjectReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -24,9 +25,7 @@ import java.util.List;
  **/
 @Component
 @Slf4j
-public class HotelProjectReportBuilder implements IHotelProjectReportBuilder {
-    @Autowired
-    private IReportDetailService reportDetailService;
+public class HotelProjectReportBuilder extends ReportBuilder implements IHotelProjectReportBuilder {
     @Autowired
     private IReportHotelProjectDetailService reportHotelProjectDetailService;
     @Autowired
@@ -112,30 +111,4 @@ public class HotelProjectReportBuilder implements IHotelProjectReportBuilder {
                 reportOutline.getReportTypeId(), HotelReportParagraphs.COST);
         return costService.getCost(reportOutline, costFunctionIdList);
     }
-
-    /**
-     * 获取段落包含的分组列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph    段落
-     * @return 段落包含的分组列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getGroupsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getGroupsByParagraph(reportTypeId, paragraph);
-    }
-
-    /**
-     * 获取段落包含的功能点列表
-     *
-     * @param reportTypeId 报告类型id
-     * @param paragraph    段落
-     * @return 段落包含的功能点列表
-     * @author lixing
-     * @version V1.0 2021/6/7 11:17 上午
-     */
-    private List<String> getFunctionsByParagraph(String reportTypeId, String paragraph) {
-        return reportDetailService.getFunctionsByParagraph(reportTypeId, paragraph);
-    }
 }