Browse Source

修改酒店项目报告返回值

lixing 3 years ago
parent
commit
6ca22c33fc
20 changed files with 433 additions and 473 deletions
  1. 55 0
      src/main/java/com/persagy/apm/energy/report/monthly/config/function/constant/enums/FunctionTypeEnum.java
  2. 44 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/IBusinessReportCostInfoService.java
  3. 1 1
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportPlatformInfoService.java
  4. 1 1
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportPowerInfoService.java
  5. 87 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/impl/BusinessReportCostInfoServiceImpl.java
  6. 2 2
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportPlatformInfoServiceImpl.java
  7. 2 2
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportPowerInfoServiceImpl.java
  8. 1 12
      src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/impl/ReportBusinessDetailServiceImpl.java
  9. 1 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/common/model/vo/DateGraphVO.java
  10. 19 35
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportCostInfoService.java
  11. 37 77
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportCostInfoServiceImpl.java
  12. 6 6
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectCostInfo.java
  13. 24 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceGraph.java
  14. 1 9
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceInfo.java
  15. 31 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/service/IHotelProjectReportCostService.java
  16. 117 0
      src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/service/impl/HotelProjectReportCostServiceImpl.java
  17. 0 79
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IHotelProjectReportCostService.java
  18. 3 3
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/business/impl/BusinessReportBuilder.java
  19. 1 5
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/builder/hotel/impl/HotelProjectReportBuilder.java
  20. 0 241
      src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/HotelProjectReportCostServiceImpl.java

+ 55 - 0
src/main/java/com/persagy/apm/energy/report/monthly/config/function/constant/enums/FunctionTypeEnum.java

@@ -0,0 +1,55 @@
+package com.persagy.apm.energy.report.monthly.config.function.constant.enums;
+
+import com.persagy.apm.common.model.annotation.SwaggerDisplayEnum;
+import lombok.Getter;
+import lombok.Setter;
+
+/**
+ * 信息点类型
+ *
+ * @author lixing
+ * @version V1.0 2021/5/17 10:51 上午
+ */
+@SwaggerDisplayEnum
+public enum FunctionTypeEnum {
+    /**
+     * 信息点类型
+     */
+    ENERGY("0", "能耗"),
+    COST("1", "费用"),
+    ENERGY_BUDGET("2", "能耗预算"),
+    COST_BUDGET("3", "费用预算");
+
+    @Setter
+    @Getter
+    private String type;
+    @Setter
+    @Getter
+    private String desc;
+
+    FunctionTypeEnum(String type, String desc) {
+        this.type = type;
+        this.desc = desc;
+    }
+
+    /**
+     * 根据type获取到枚举对象
+     *
+     * @param type 报告状态编码
+     * @return 能耗类型枚举对象
+     * @author lixing
+     * @version V1.0 2021/5/31 4:06 下午
+     */
+    public static FunctionTypeEnum getByType(String type) {
+        if (type == null) {
+            return null;
+        }
+        FunctionTypeEnum[] energyTypeEnums = FunctionTypeEnum.values();
+        for (FunctionTypeEnum energyTypeEnum : energyTypeEnums) {
+            if (type.equals(energyTypeEnum.getType())) {
+                return energyTypeEnum;
+            }
+        }
+        return null;
+    }
+}

+ 44 - 0
src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/IBusinessReportCostInfoService.java

@@ -0,0 +1,44 @@
+package com.persagy.apm.energy.report.monthly.detail.business.service;
+
+import com.persagy.apm.energy.report.monthly.config.function.model.Function;
+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.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
+
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 商业报告费用信息service接口
+ *
+ * @author lixing
+ * @version V1.0 2021/5/30 10:26 下午
+ **/
+public interface IBusinessReportCostInfoService extends IReportCostInfoService {
+    /**
+     * 获取费用信息
+     *
+     * @param reportOutline  报告outline对象
+     * @param groupIdList    费用信息点分组列表
+     * @param functionIdList 费用信息点列表
+     * @return 费用信息
+     * @author lixing
+     * @version V1.0 2021/5/24 4:14 下午
+     */
+    CostVO getOpenCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList);
+
+    /**
+     * 获取可同比费用信息
+     *
+     * @param reportOutline  报告outline对象
+     * @param groupIdList    费用信息点分组列表
+     * @param functionIdList 费用信息点列表
+     * @return 费用信息
+     * @author lixing
+     * @version V1.0 2021/5/24 4:14 下午
+     */
+    CostVO getCompareCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList);
+}

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportPlatformInfoService.java

@@ -1,4 +1,4 @@
-package com.persagy.apm.energy.report.monthly.outline.service;
+package com.persagy.apm.energy.report.monthly.detail.business.service;
 
 import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportPowerInfoService.java

@@ -1,4 +1,4 @@
-package com.persagy.apm.energy.report.monthly.outline.service;
+package com.persagy.apm.energy.report.monthly.detail.business.service;
 
 import com.persagy.apm.energy.report.monthly.config.function.model.Function;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.GroupInfo;

+ 87 - 0
src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/impl/BusinessReportCostInfoServiceImpl.java

@@ -0,0 +1,87 @@
+package com.persagy.apm.energy.report.monthly.detail.business.service.impl;
+
+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.impl.ReportCostInfoServiceImpl;
+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.service.ISaasWebService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import org.springframework.util.CollectionUtils;
+
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.List;
+import java.util.stream.Collectors;
+
+/**
+ * 商业类报告费用service类
+ *
+ * @author lixing
+ * @version V1.0 2021/5/30 7:30 下午
+ **/
+@Service
+public class BusinessReportCostInfoServiceImpl extends ReportCostInfoServiceImpl
+        implements IBusinessReportCostInfoService {
+    @Autowired
+    private ISaasWebService saasWebService;
+    @Autowired
+    private IReportOutlineService reportOutlineService;
+
+    @Override
+    public CostVO getOpenCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList) {
+
+        Date reportMonth = reportOutline.getReportMonth();
+
+        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
+
+        return getCostInfoByProjectIds(groupIdList, functionIdList, reportMonth, projectIds);
+    }
+
+    @Override
+    public CostVO getCompareCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList) {
+
+        Date reportMonth = reportOutline.getReportMonth();
+
+        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
+
+        List<String> comparableProjects = saasWebService.getComparableProjects(projectIds, reportMonth);
+
+        return getCostInfoByProjectIds(groupIdList, functionIdList, reportMonth, comparableProjects);
+    }
+
+    /**
+     * 根据项目id获取费用信息
+     *
+     * @param groupIdList    费用信息点分组列表
+     * @param functionIdList 费用信息点列表
+     * @param reportMonth    报告月份
+     * @param projectIds     项目id列表
+     * @return 费用信息
+     * @author lixing
+     * @version V1.0 2021/5/30 11:41 下午
+     */
+    private CostVO getCostInfoByProjectIds(List<String> groupIdList, List<String> functionIdList, Date reportMonth, List<String> projectIds) {
+        CostVO costVO = new CostVO();
+        List<GroupInfo<CostItemVO>> costGroupInfos = getCostGroupInfos(groupIdList, reportMonth, projectIds);
+        costVO.setGroups(costGroupInfos);
+
+        List<CostItemVO> costItemInfos = getCostItemInfos(functionIdList, reportMonth, projectIds);
+        costVO.setItems(costItemInfos);
+
+        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 costVO;
+    }
+}

+ 2 - 2
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportPlatformInfoServiceImpl.java

@@ -1,4 +1,4 @@
-package com.persagy.apm.energy.report.monthly.outline.service.impl;
+package com.persagy.apm.energy.report.monthly.detail.business.service.impl;
 
 import com.persagy.apm.common.context.poems.PoemsContext;
 import com.persagy.apm.energy.report.common.dto.QueryPlatformParamDTO;
@@ -13,7 +13,7 @@ import com.persagy.apm.energy.report.monthly.config.type.model.ReportType;
 import com.persagy.apm.energy.report.monthly.config.type.service.IReportTypeService;
 import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
-import com.persagy.apm.energy.report.monthly.outline.service.IBusinessReportPlatformInfoService;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPlatformInfoService;
 import com.persagy.apm.energy.report.monthly.outline.service.IReportOutlineService;
 import org.assertj.core.util.Lists;
 import org.springframework.beans.factory.annotation.Autowired;

+ 2 - 2
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportPowerInfoServiceImpl.java

@@ -1,4 +1,4 @@
-package com.persagy.apm.energy.report.monthly.outline.service.impl;
+package com.persagy.apm.energy.report.monthly.detail.business.service.impl;
 
 import com.persagy.apm.energy.report.centermiddleware.constant.enums.TimeTypeEnum;
 import com.persagy.apm.energy.report.centermiddleware.model.dto.QueryEnergyDataDTO;
@@ -13,7 +13,7 @@ import com.persagy.apm.energy.report.monthly.detail.common.model.vo.GroupInfo;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.PowerItemVO;
 import com.persagy.apm.energy.report.monthly.detail.common.model.vo.PowerVO;
 import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
-import com.persagy.apm.energy.report.monthly.outline.service.IBusinessReportPowerInfoService;
+import com.persagy.apm.energy.report.monthly.detail.business.service.IBusinessReportPowerInfoService;
 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;

+ 1 - 12
src/main/java/com/persagy/apm/energy/report/monthly/detail/business/service/impl/ReportBusinessDetailServiceImpl.java

@@ -14,12 +14,6 @@ import com.persagy.apm.energy.report.monthly.config.rel.detailstatisticsitem.mod
 import com.persagy.apm.energy.report.monthly.config.rel.detailstatisticsitem.model.dto.QueryReportDetailStatisticsItemRelDTO;
 import com.persagy.apm.energy.report.monthly.config.rel.detailstatisticsitem.model.vo.ResponseReportDetailStatisticsItemRelListItemVO;
 import com.persagy.apm.energy.report.monthly.config.rel.detailstatisticsitem.service.IReportDetailStatisticsItemRelService;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunction.model.ReportTypeFunctionRel;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunction.model.dto.QueryReportTypeFunctionRelDTO;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunction.service.IReportTypeFunctionRelService;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunctiongroup.model.ReportTypeFunctionGroupRel;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunctiongroup.model.dto.QueryReportTypeFunctionGroupRelDTO;
-import com.persagy.apm.energy.report.monthly.config.rel.typefunctiongroup.service.IReportTypeFunctionGroupRelService;
 import com.persagy.apm.energy.report.monthly.config.type.constant.enums.BelongTypeEnum;
 import com.persagy.apm.energy.report.monthly.config.type.model.ReportType;
 import com.persagy.apm.energy.report.monthly.config.type.service.IReportTypeService;
@@ -38,14 +32,12 @@ import com.persagy.apm.energy.report.saasweb.model.vo.ReportAreaVO;
 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;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.util.CollectionUtils;
 
 import java.util.List;
-import java.util.stream.Collectors;
 
 /**
  * 商业报告详情(ReportBusinessDetail) service层
@@ -59,10 +51,6 @@ public class ReportBusinessDetailServiceImpl extends ServiceImpl<ReportBusinessD
     @Autowired
     IReportDetailStatisticsItemRelService reportDetailStatisticsItemRelService;
     @Autowired
-    private IReportTypeFunctionRelService reportTypeFunctionRelService;
-    @Autowired
-    private IReportTypeFunctionGroupRelService reportTypeFunctionGroupRelService;
-    @Autowired
     private IReportOutlineService reportOutlineService;
     @Autowired
     private IReportTypeService reportTypeService;
@@ -371,4 +359,5 @@ public class ReportBusinessDetailServiceImpl extends ServiceImpl<ReportBusinessD
         responseReportBusinessDetailItemVO.setStatisticItemsSupplements(responseReportDetailStatisticsItemRelListItemVOList);
         return responseReportBusinessDetailItemVO;
     }
+
 }

+ 1 - 0
src/main/java/com/persagy/apm/energy/report/monthly/detail/common/model/vo/DateGraphVO.java

@@ -18,6 +18,7 @@ import java.util.List;
 public class DateGraphVO {
     @ApiModelProperty("名称")
     private String name;
+
     @ApiModelProperty("值")
     private List<DateGraphItemVO> value;
 }

+ 19 - 35
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IBusinessReportCostInfoService.java

@@ -1,11 +1,8 @@
-package com.persagy.apm.energy.report.monthly.outline.service;
+package com.persagy.apm.energy.report.monthly.detail.common.service;
 
 import com.persagy.apm.energy.report.monthly.config.function.model.Function;
 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.outline.model.ReportOutline;
-import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
 
 import java.util.Date;
 import java.util.List;
@@ -16,36 +13,13 @@ import java.util.List;
  * @author lixing
  * @version V1.0 2021/5/30 10:26 下午
  **/
-public interface IBusinessReportCostInfoService {
-    /**
-     * 获取费用信息
-     *
-     * @param reportOutline  报告outline对象
-     * @param groupIdList    费用信息点分组列表
-     * @param functionIdList 费用信息点列表
-     * @return 费用信息
-     * @author lixing
-     * @version V1.0 2021/5/24 4:14 下午
-     */
-    CostVO getOpenCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList);
-
-    /**
-     * 获取可同比费用信息
-     *
-     * @param reportOutline  报告outline对象
-     * @param groupIdList    费用信息点分组列表
-     * @param functionIdList 费用信息点列表
-     * @return 费用信息
-     * @author lixing
-     * @version V1.0 2021/5/24 4:14 下午
-     */
-    CostVO getCompareCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList);
-
+public interface IReportCostInfoService {
     /**
      * 获取费用条目信息
      *
      * @param functionIdList 费用条目列表
      * @param reportMonth    报告月份
+     * @param projectIds     项目id列表
      * @return 费用条目列表
      * @author lixing
      * @version V1.0 2021/5/24 7:15 下午
@@ -65,19 +39,29 @@ public interface IBusinessReportCostInfoService {
     List<CostItemVO> getCostItemsByProjects(Date reportMonth, List<String> projectIds, Function function);
 
     /**
+     * 获取统计费用需要使用的项目面积
+     *
+     * @param projectIds 需要统计的项目的id列表
+     * @return 统计费用需要使用的项目面积
+     * @author lixing
+     * @version V1.0 2021/6/9 7:51 下午
+     */
+    Double getProjectCostBuildingArea(List<String> projectIds);
+
+    /**
      * 获取一个条目的费用信息
      *
-     * @param reportMonth         报告月份
-     * @param reportProjectInfo   报告项目信息
-     * @param totalCommercialArea 区域项目总面积
-     * @param functionId          功能点id
+     * @param reportMonth      报告月份
+     * @param projectId        项目id
+     * @param costBuildingArea 统计费用使用的建筑面积
+     * @param function         功能点
      * @return 费用对象
      * @author lixing
      * @version V1.0 2021/5/30 5:54 下午
      */
     CostItemVO getCostItemInfo(
-            Date reportMonth, ReportProjectVO reportProjectInfo,
-            Double totalCommercialArea, String functionId);
+            Date reportMonth, String projectId,
+            Double costBuildingArea, Function function);
 
     /**
      * 求一组费用条目的统计值

+ 37 - 77
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/BusinessReportCostInfoServiceImpl.java

@@ -1,17 +1,19 @@
-package com.persagy.apm.energy.report.monthly.outline.service.impl;
+package com.persagy.apm.energy.report.monthly.detail.common.service.impl;
 
 import com.persagy.apm.energy.report.common.utils.DataUtils;
 import com.persagy.apm.energy.report.common.utils.DateUtils;
+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.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.IBusinessReportCostInfoService;
 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;
@@ -33,7 +35,7 @@ import java.util.stream.Collectors;
  * @version V1.0 2021/5/30 7:30 下午
  **/
 @Service
-public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInfoService {
+public class ReportCostInfoServiceImpl implements IReportCostInfoService {
     @Autowired
     private IFunctionGroupService functionGroupService;
     @Autowired
@@ -42,63 +44,6 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
     private IFunctionValueService functionValueService;
     @Autowired
     private ISaasWebService saasWebService;
-    @Autowired
-    private IReportOutlineService reportOutlineService;
-
-    @Override
-    public CostVO getOpenCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList) {
-
-        Date reportMonth = reportOutline.getReportMonth();
-
-        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
-
-        return getCostInfoByProjectIds(groupIdList, functionIdList, reportMonth, projectIds);
-    }
-
-    @Override
-    public CostVO getCompareCost(ReportOutline reportOutline, List<String> groupIdList, List<String> functionIdList) {
-
-        Date reportMonth = reportOutline.getReportMonth();
-
-        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
-
-        List<String> comparableProjects = saasWebService.getComparableProjects(projectIds, reportMonth);
-
-        return getCostInfoByProjectIds(groupIdList, functionIdList, reportMonth, comparableProjects);
-    }
-
-    /**
-     * 根据项目id获取费用信息
-     *
-     * @param groupIdList    费用信息点分组列表
-     * @param functionIdList 费用信息点列表
-     * @param reportMonth    报告月份
-     * @param projectIds     项目id列表
-     * @return 费用信息
-     * @author lixing
-     * @version V1.0 2021/5/30 11:41 下午
-     */
-    private CostVO getCostInfoByProjectIds(List<String> groupIdList, List<String> functionIdList, Date reportMonth, List<String> projectIds) {
-        CostVO costVO = new CostVO();
-        List<GroupInfo<CostItemVO>> costGroupInfos = getCostGroupInfos(groupIdList, reportMonth, projectIds);
-        costVO.setGroups(costGroupInfos);
-
-        List<CostItemVO> costItemInfos = getCostItemInfos(functionIdList, reportMonth, projectIds);
-        costVO.setItems(costItemInfos);
-
-        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 costVO;
-    }
-
 
     @Override
     public List<CostItemVO> getCostItemInfos(List<String> functionIdList, Date reportMonth, List<String> projectIds) {
@@ -125,8 +70,9 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
         if (CollectionUtils.isEmpty(projectIds)) {
             return projectCostItems;
         }
+
         // 统计项目总的商业面积
-        Double totalCommercialArea = saasWebService.getTotalCommercialArea(projectIds);
+        Double projectCostBuildingArea = getProjectCostBuildingArea(projectIds);
 
         for (String projectId : projectIds) {
             // 获取项目信息
@@ -134,33 +80,47 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
             if (reportProjectInfo == null) {
                 continue;
             }
-            CostItemVO costItemVO = getCostItemInfo(reportMonth, reportProjectInfo, totalCommercialArea, function.getId());
+            CostItemVO costItemVO = getCostItemInfo(reportMonth, projectId, projectCostBuildingArea, function);
             projectCostItems.add(costItemVO);
         }
         return projectCostItems;
     }
 
     @Override
+    public Double getProjectCostBuildingArea(List<String> projectIds) {
+        return saasWebService.getTotalCommercialArea(projectIds);
+    }
+
+    @Override
     public CostItemVO getCostItemInfo(
-            Date reportMonth, ReportProjectVO reportProjectInfo,
-            Double totalCommercialArea, String functionId) {
-        // 费用展示为万元,定义一万元变量
-        Double tenThousand = 10000d;
-        String projectId = reportProjectInfo.getProjectId();
+            Date reportMonth, String projectId,
+            Double costBuildingArea, Function function) {
+        if (function == null) {
+            return null;
+        }
+        String functionId = function.getId();
+        String functionType = function.getFunctionType();
+        // 单位
+        double unit = 1d;
+        // 费用展示为万元
+        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, tenThousand));
+            costItemVO.setCurrentMonth(DataUtils.doubleDivide(currentMonth, unit));
         }
         String lastMonthStr = functionValueService.getFunctionValue(
                 functionId, DateUtils.getFirstDayOfLastMonth(reportMonth), projectId);
         Double lastMonth = null;
         if (StringUtils.isNotBlank(lastMonthStr)) {
             lastMonth = Double.valueOf(lastMonthStr);
-            costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, tenThousand));
+            costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, unit));
         }
 
         // 统计去年同期的费用
@@ -182,10 +142,10 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
         if (lastYearSumItem != null) {
             lastYearCount = lastYearSumItem.getLastYearCount();
             if (lastYearCount != null) {
-                costItemVO.setLastYearCount(DataUtils.doubleDivide(lastYearCount, tenThousand));
+                costItemVO.setLastYearCount(DataUtils.doubleDivide(lastYearCount, unit));
             }
-            if (totalCommercialArea != null && !totalCommercialArea.equals(zero) && lastYearCount != null) {
-                costItemVO.setLastYearPerCount(DataUtils.doubleDivide(lastYearCount, totalCommercialArea));
+            if (costBuildingArea != null && !costBuildingArea.equals(zero) && lastYearCount != null) {
+                costItemVO.setLastYearPerCount(DataUtils.doubleDivide(lastYearCount, costBuildingArea));
             }
         }
 
@@ -208,23 +168,23 @@ public class BusinessReportCostInfoServiceImpl implements IBusinessReportCostInf
         if (yearSumItem != null) {
             yearCount = yearSumItem.getYearCount();
             if (yearCount != null) {
-                costItemVO.setYearCount(DataUtils.doubleDivide(yearCount, tenThousand));
+                costItemVO.setYearCount(DataUtils.doubleDivide(yearCount, unit));
             }
-            if (totalCommercialArea != null && !totalCommercialArea.equals(zero) && yearCount != null) {
-                costItemVO.setYearPerCount(DataUtils.doubleDivide(yearCount, totalCommercialArea));
+            if (costBuildingArea != null && !costBuildingArea.equals(zero) && yearCount != null) {
+                costItemVO.setYearPerCount(DataUtils.doubleDivide(yearCount, costBuildingArea));
             }
         }
 
         if (currentMonth != null && lastMonth != null) {
             Double linkCount = DataUtils.doubleSubtract(currentMonth, lastMonth);
             Double linkRange = DataUtils.doubleDivide(linkCount, lastMonth);
-            costItemVO.setLinkCount(DataUtils.doubleDivide(linkCount, tenThousand));
+            costItemVO.setLinkCount(DataUtils.doubleDivide(linkCount, unit));
             costItemVO.setLinkRange(linkRange);
         }
 
         if (lastYearCount != null && yearCount != null) {
             double sameCount = DataUtils.doubleSubtract(yearCount, lastYearCount);
-            costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, tenThousand));
+            costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, unit));
             costItemVO.setSameRange(DataUtils.doubleDivide(sameCount, lastYearCount));
         }
         return costItemVO;

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

@@ -24,12 +24,12 @@ public class HotelProjectCostInfo {
     private Double costPerSquareMetre;
     @ApiModelProperty(value = "费用同比涨幅")
     private Double costYearRange;
-    @ApiModelProperty(value = "入住率")
-    private Double occupancy;
-    @ApiModelProperty(value = "入住率同比涨幅")
-    private Double occupancyYearRange;
-    @ApiModelProperty(value = "入住率环比涨幅")
-    private Double occupancyMonthRange;
+//    @ApiModelProperty(value = "入住率")
+//    private Double occupancy;
+//    @ApiModelProperty(value = "入住率同比涨幅")
+//    private Double occupancyYearRange;
+//    @ApiModelProperty(value = "入住率环比涨幅")
+//    private Double occupancyMonthRange;
     @ApiModelProperty(value = "条目费用信息")
     private List<CostItemVO> itemsCostInfo;
 }

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

@@ -0,0 +1,24 @@
+package com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.DateGraphItemVO;
+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 java.util.List;
+
+/**
+ * @author lixing
+ * @version V1.0 2021/6/8 11:09 上午
+ **/
+@Data
+@ApiModel(value = "酒店项目维护信息图表")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class HotelProjectMaintenanceGraph extends DateGraphVO {
+    @ApiModelProperty("月度值")
+    private Double monthlyValue;
+    @ApiModelProperty("标准值")
+    private Double standardValue;
+}

+ 1 - 9
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceInfo.java

@@ -19,18 +19,10 @@ import java.util.List;
 @ApiModel("酒店项目维护信息")
 @JsonInclude(JsonInclude.Include.NON_NULL)
 public class HotelProjectMaintenanceInfo extends HotelRankVO {
-    @ApiModelProperty(value = "变损率")
-    private Double changeLossRate;
-    @ApiModelProperty(value = "变损率标准值")
-    private Double changeLossStandardValue;
-    @ApiModelProperty(value = "总支不平衡率")
-    private Double imbalanceRate;
-    @ApiModelProperty(value = "总支不平衡率标准值")
-    private Double imbalanceStandardValue;
     @ApiModelProperty(value = "数据断线次数")
     private Double breakCount;
     @ApiModelProperty(value = "数据中断时长")
     private Double breakLostTime;
     @ApiModelProperty(value = "图表信息")
-    private List<DateGraphVO> graphs;
+    private List<HotelProjectMaintenanceGraph> graphs;
 }

+ 31 - 0
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/service/IHotelProjectReportCostService.java

@@ -0,0 +1,31 @@
+package com.persagy.apm.energy.report.monthly.detail.hotel.project.service;
+
+import com.persagy.apm.energy.report.monthly.config.function.model.Function;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
+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.detail.hotel.project.model.vo.HotelProjectCostInfo;
+import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
+import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
+
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 酒店项目报告费用信息service接口
+ *
+ * @author lixing
+ * @version V1.0 2021/5/30 10:26 下午
+ **/
+public interface IHotelProjectReportCostService extends IReportCostInfoService {
+    /**
+     * 获取费用信息
+     *
+     * @param reportOutline  报告outline对象
+     * @param functionIdList 费用信息点列表
+     * @return 费用信息
+     * @author lixing
+     * @version V1.0 2021/5/24 4:14 下午
+     */
+    HotelProjectCostInfo getCost(ReportOutline reportOutline, List<String> functionIdList);
+}

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

@@ -0,0 +1,117 @@
+package com.persagy.apm.energy.report.monthly.detail.hotel.project.service.impl;
+
+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;
+import com.persagy.apm.energy.report.monthly.detail.common.service.impl.ReportCostInfoServiceImpl;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectCostInfo;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.service.IHotelProjectReportCostService;
+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.model.vo.SimpleProjectVO;
+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;
+import org.springframework.util.CollectionUtils;
+
+import java.math.BigDecimal;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * 酒店项目类报告费用service类
+ *
+ * @author lixing
+ * @version V1.0 2021/5/30 7:30 下午
+ **/
+@Service
+public class HotelProjectReportCostServiceImpl extends ReportCostInfoServiceImpl
+        implements IHotelProjectReportCostService {
+    @Autowired
+    private IFunctionGroupService functionGroupService;
+    @Autowired
+    private IFunctionService functionService;
+    @Autowired
+    private IFunctionValueService functionValueService;
+    @Autowired
+    private ISaasWebService saasWebService;
+    @Autowired
+    private IReportOutlineService reportOutlineService;
+
+    @Override
+    public HotelProjectCostInfo getCost(ReportOutline reportOutline, List<String> functionIdList) {
+
+        Date reportMonth = reportOutline.getReportMonth();
+
+        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
+
+        if (CollectionUtils.isEmpty(projectIds)) {
+            return null;
+        }
+
+        return getCostInfoByProjectId(functionIdList, reportMonth, projectIds.get(0));
+    }
+
+
+    /**
+     * 根据项目id获取费用信息
+     *
+     * @param functionIdList 费用信息点列表
+     * @param reportMonth    报告月份
+     * @param projectId      项目id
+     * @return 费用信息
+     * @author lixing
+     * @version V1.0 2021/5/30 11:41 下午
+     */
+    private HotelProjectCostInfo getCostInfoByProjectId(
+            List<String> functionIdList, Date reportMonth, String projectId) {
+        HotelProjectCostInfo hotelProjectCostInfo = new HotelProjectCostInfo();
+        // 获取项目信息
+        SimpleProjectVO simpleProjectInfo = saasWebService.getSimpleProjectInfo(projectId);
+        if (simpleProjectInfo == null) {
+            return null;
+        }
+        hotelProjectCostInfo.setProjectName(simpleProjectInfo.getProjectName());
+
+        List<CostItemVO> costItemInfos = getCostItemInfos(functionIdList, reportMonth, Lists.newArrayList(projectId));
+        hotelProjectCostInfo.setItemsCostInfo(costItemInfos);
+
+        CostItemVO costSum = getCostSum(costItemInfos);
+
+        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;
+    }
+
+    @Override
+    public Double getProjectCostBuildingArea(List<String> projectIds) {
+        BigDecimal totalBuildingArea = new BigDecimal("0");
+        for (String projectId : projectIds) {
+            // 获取项目总的建筑面积
+            ReportProjectVO reportProjectInfo = saasWebService.getReportProjectInfo(projectId);
+            if (reportProjectInfo == null) {
+                return null;
+            }
+            if (StringUtils.isNotBlank(reportProjectInfo.getTotalBuildingArea())) {
+                totalBuildingArea = totalBuildingArea.add(new BigDecimal(reportProjectInfo.getTotalBuildingArea()));
+            }
+
+        }
+        return totalBuildingArea.doubleValue();
+    }
+}

+ 0 - 79
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/IHotelProjectReportCostService.java

@@ -1,79 +0,0 @@
-package com.persagy.apm.energy.report.monthly.outline.service;
-
-import com.persagy.apm.energy.report.monthly.config.function.model.Function;
-import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
-import com.persagy.apm.energy.report.monthly.detail.common.model.vo.GroupInfo;
-import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectCostInfo;
-import com.persagy.apm.energy.report.monthly.outline.model.ReportOutline;
-import com.persagy.apm.energy.report.saasweb.model.vo.ReportProjectVO;
-
-import java.util.Date;
-import java.util.List;
-
-/**
- * 酒店项目报告费用信息service接口
- *
- * @author lixing
- * @version V1.0 2021/5/30 10:26 下午
- **/
-public interface IHotelProjectReportCostService {
-    /**
-     * 获取费用信息
-     *
-     * @param reportOutline  报告outline对象
-     * @param functionIdList 费用信息点列表
-     * @return 费用信息
-     * @author lixing
-     * @version V1.0 2021/5/24 4:14 下午
-     */
-    HotelProjectCostInfo getCost(ReportOutline reportOutline, List<String> functionIdList);
-
-    /**
-     * 获取费用条目信息
-     *
-     * @param functionIdList 费用条目列表
-     * @param reportMonth    报告月份
-     * @param projectId      项目id
-     * @return 费用条目列表
-     * @author lixing
-     * @version V1.0 2021/5/24 7:15 下午
-     */
-    List<CostItemVO> getCostItemInfos(List<String> functionIdList, Date reportMonth, String projectId);
-
-    /**
-     * 获取一组项目一个功能点的费用信息
-     *
-     * @param reportMonth 报告月份
-     * @param projectIds  一组项目id
-     * @param function    功能点(条目)
-     * @return 一组项目一个功能点的费用信息
-     * @author lixing
-     * @version V1.0 2021/5/30 5:55 下午
-     */
-    List<CostItemVO> getCostItemsByProjects(Date reportMonth, List<String> projectIds, Function function);
-
-    /**
-     * 获取一个条目的费用信息
-     *
-     * @param reportMonth         报告月份
-     * @param reportProjectInfo   报告项目信息
-     * @param totalCommercialArea 区域项目总面积
-     * @param functionId          功能点id
-     * @return 费用对象
-     * @author lixing
-     * @version V1.0 2021/5/30 5:54 下午
-     */
-    CostItemVO getCostItemInfo(
-            Date reportMonth, ReportProjectVO reportProjectInfo,
-            Double totalCommercialArea, String functionId);
-
-    /**
-     * 求一组费用条目的统计值
-     *
-     * @param costItems 一组费用条目
-     * @return 一个新的费用条目对象,将统计值属性赋值给它
-     * @author lixing
-     * @version V1.0 2021/5/30 10:46 上午
-     */
-    CostItemVO getCostSum(List<CostItemVO> costItems);
-}

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

@@ -8,9 +8,9 @@ import com.persagy.apm.energy.report.monthly.detail.business.service.IReportBusi
 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.IBusinessReportCostInfoService;
-import com.persagy.apm.energy.report.monthly.outline.service.IBusinessReportPlatformInfoService;
-import com.persagy.apm.energy.report.monthly.outline.service.IBusinessReportPowerInfoService;
+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.outline.service.builder.business.IBusinessReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;

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

@@ -1,15 +1,12 @@
 package com.persagy.apm.energy.report.monthly.outline.service.builder.hotel.impl;
 
-import com.persagy.apm.energy.report.monthly.detail.business.service.IReportBusinessDetailService;
 import com.persagy.apm.energy.report.monthly.detail.common.service.IReportDetailService;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.dto.AddReportHotelProjectDetailDTO;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.*;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.service.IReportHotelProjectDetailService;
-import com.persagy.apm.energy.report.monthly.outline.constants.BusinessReportParagraphs;
 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.outline.service.IHotelProjectReportCostService;
-import com.persagy.apm.energy.report.monthly.outline.service.IReportOutlineService;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.service.IHotelProjectReportCostService;
 import com.persagy.apm.energy.report.monthly.outline.service.builder.hotel.IHotelProjectReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -17,7 +14,6 @@ import org.springframework.stereotype.Component;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.transaction.interceptor.TransactionAspectSupport;
 
-import java.util.Date;
 import java.util.List;
 
 /**

+ 0 - 241
src/main/java/com/persagy/apm/energy/report/monthly/outline/service/impl/HotelProjectReportCostServiceImpl.java

@@ -1,241 +0,0 @@
-package com.persagy.apm.energy.report.monthly.outline.service.impl;
-
-import com.persagy.apm.energy.report.common.utils.DataUtils;
-import com.persagy.apm.energy.report.common.utils.DateUtils;
-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.service.IFunctionGroupService;
-import com.persagy.apm.energy.report.monthly.detail.common.model.vo.CostItemVO;
-import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectCostInfo;
-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.IHotelProjectReportCostService;
-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.model.vo.SimpleProjectVO;
-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;
-import org.springframework.util.CollectionUtils;
-
-import java.util.ArrayList;
-import java.util.Date;
-import java.util.List;
-
-/**
- * 酒店项目类报告费用service类
- *
- * @author lixing
- * @version V1.0 2021/5/30 7:30 下午
- **/
-@Service
-public class HotelProjectReportCostServiceImpl implements IHotelProjectReportCostService {
-    @Autowired
-    private IFunctionGroupService functionGroupService;
-    @Autowired
-    private IFunctionService functionService;
-    @Autowired
-    private IFunctionValueService functionValueService;
-    @Autowired
-    private ISaasWebService saasWebService;
-    @Autowired
-    private IReportOutlineService reportOutlineService;
-
-    @Override
-    public HotelProjectCostInfo getCost(ReportOutline reportOutline, List<String> functionIdList) {
-
-        Date reportMonth = reportOutline.getReportMonth();
-
-        List<String> projectIds = reportOutlineService.queryRelatedProjectIds(reportOutline);
-
-        if (CollectionUtils.isEmpty(projectIds)) {
-            return null;
-        }
-
-        return getCostInfoByProjectId(functionIdList, reportMonth, projectIds.get(0));
-    }
-
-
-    /**
-     * 根据项目id获取费用信息
-     *
-     * @param functionIdList 费用信息点列表
-     * @param reportMonth    报告月份
-     * @param projectId     项目id
-     * @return 费用信息
-     * @author lixing
-     * @version V1.0 2021/5/30 11:41 下午
-     */
-    private HotelProjectCostInfo getCostInfoByProjectId(
-            List<String> functionIdList, Date reportMonth, String projectId) {
-        HotelProjectCostInfo hotelProjectCostInfo = new HotelProjectCostInfo();
-        // 获取项目信息
-        SimpleProjectVO simpleProjectInfo = saasWebService.getSimpleProjectInfo(projectId);
-        if (simpleProjectInfo == null) {
-            return null;
-        }
-        hotelProjectCostInfo.setProjectName(simpleProjectInfo.getProjectName());
-
-        // TODO: 2021/6/9
-        List<CostItemVO> costItemInfos = getCostItemInfos(functionIdList, reportMonth, projectId);
-        hotelProjectCostInfo.setItemsCostInfo(costItemInfos);
-
-//
-//        hotelProjectCostInfo.setTotalCost();
-//        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;
-    }
-
-
-    @Override
-    public List<CostItemVO> getCostItemInfos(List<String> functionIdList, Date reportMonth, String projectId) {
-        List<CostItemVO> costItemVOList = Lists.newArrayList();
-//        if (CollectionUtils.isEmpty(functionIdList) || CollectionUtils.isEmpty(projectIds)) {
-//            return costItemVOList;
-//        }
-//
-//        for (String functionId : functionIdList) {
-//            Function function = functionService.queryFunctionDetail(functionId);
-//            String itemName = functionService.getItemName(function, projectIds.get(0));
-//
-//            List<CostItemVO> projectCostItems = getCostItemsByProjects(reportMonth, projectIds, function);
-//            CostItemVO costSumByProjects = getCostSum(projectCostItems);
-//            costSumByProjects.setName(itemName);
-//            costItemVOList.add(costSumByProjects);
-//        }
-        return costItemVOList;
-    }
-
-    @Override
-    public List<CostItemVO> getCostItemsByProjects(Date reportMonth, List<String> projectIds, Function function) {
-        List<CostItemVO> projectCostItems = Lists.newArrayList();
-        if (CollectionUtils.isEmpty(projectIds)) {
-            return projectCostItems;
-        }
-        // 统计项目总的商业面积
-        Double totalCommercialArea = saasWebService.getTotalCommercialArea(projectIds);
-
-        for (String projectId : projectIds) {
-            // 获取项目信息
-            ReportProjectVO reportProjectInfo = saasWebService.getReportProjectInfo(projectId);
-            if (reportProjectInfo == null) {
-                continue;
-            }
-            CostItemVO costItemVO = getCostItemInfo(reportMonth, reportProjectInfo, totalCommercialArea, function.getId());
-            projectCostItems.add(costItemVO);
-        }
-        return projectCostItems;
-    }
-
-    @Override
-    public CostItemVO getCostItemInfo(
-            Date reportMonth, ReportProjectVO reportProjectInfo,
-            Double totalCommercialArea, String functionId) {
-        // 费用展示为万元,定义一万元变量
-        Double tenThousand = 10000d;
-        String projectId = reportProjectInfo.getProjectId();
-        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, tenThousand));
-        }
-        String lastMonthStr = functionValueService.getFunctionValue(
-                functionId, DateUtils.getFirstDayOfLastMonth(reportMonth), projectId);
-        Double lastMonth = null;
-        if (StringUtils.isNotBlank(lastMonthStr)) {
-            lastMonth = Double.valueOf(lastMonthStr);
-            costItemVO.setLastMonth(DataUtils.doubleDivide(lastMonth, tenThousand));
-        }
-
-        // 统计去年同期的费用
-        Double lastYearCount = null;
-        List<Date> lastYearMonths = DateUtils.getFirstDayOfEveryMonth(
-                DateUtils.getFirstDayOfLastYear(reportMonth),
-                DateUtils.getSameMonthFirstDayOfLastYear(reportMonth));
-        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);
-            }
-        }
-        Double zero = 0d;
-        CostItemVO lastYearSumItem = getCostSum(lastYearItems);
-        if (lastYearSumItem != null) {
-            lastYearCount = lastYearSumItem.getLastYearCount();
-            if (lastYearCount != null) {
-                costItemVO.setLastYearCount(DataUtils.doubleDivide(lastYearCount, tenThousand));
-            }
-            if (totalCommercialArea != null && !totalCommercialArea.equals(zero) && lastYearCount != null) {
-                costItemVO.setLastYearPerCount(DataUtils.doubleDivide(lastYearCount, totalCommercialArea));
-            }
-        }
-
-        // 统计今年的费用
-        Double yearCount = null;
-        List<Date> yearMonths = DateUtils.getFirstDayOfEveryMonth(
-                DateUtils.getFirstDayOfYear(reportMonth),
-                reportMonth);
-        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);
-            }
-        }
-
-        CostItemVO yearSumItem = getCostSum(yearItems);
-        if (yearSumItem != null) {
-            yearCount = yearSumItem.getYearCount();
-            if (yearCount != null) {
-                costItemVO.setYearCount(DataUtils.doubleDivide(yearCount, tenThousand));
-            }
-            if (totalCommercialArea != null && !totalCommercialArea.equals(zero) && yearCount != null) {
-                costItemVO.setYearPerCount(DataUtils.doubleDivide(yearCount, totalCommercialArea));
-            }
-        }
-
-        if (currentMonth != null && lastMonth != null) {
-            Double linkCount = DataUtils.doubleSubtract(currentMonth, lastMonth);
-            Double linkRange = DataUtils.doubleDivide(linkCount, lastMonth);
-            costItemVO.setLinkCount(DataUtils.doubleDivide(linkCount, tenThousand));
-            costItemVO.setLinkRange(linkRange);
-        }
-
-        if (lastYearCount != null && yearCount != null) {
-            double sameCount = DataUtils.doubleSubtract(yearCount, lastYearCount);
-            costItemVO.setSameCount(DataUtils.doubleDivide(sameCount, tenThousand));
-            costItemVO.setSameRange(DataUtils.doubleDivide(sameCount, lastYearCount));
-        }
-        return costItemVO;
-    }
-
-
-    @Override
-    public CostItemVO getCostSum(List<CostItemVO> costItems) {
-        return DataUtils.sumDoubleParams(costItems, CostItemVO.class);
-    }
-
-
-
-}