瀏覽代碼

修改酒店项目报告返回值

lixing 3 年之前
父節點
當前提交
170713cebc

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

@@ -0,0 +1,23 @@
+package com.persagy.apm.energy.report.monthly.detail.common.model.vo;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @author lixing
+ * @version V1.0 2021/6/8 11:09 上午
+ **/
+@Data
+@ApiModel(value = "日期图表vo类")
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class DateGraphVO {
+    @ApiModelProperty("名称")
+    private String name;
+    @ApiModelProperty("值")
+    private List<DateGraphItemVO> value;
+}

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

@@ -17,9 +17,6 @@ import java.util.List;
 @ApiModel("酒店项目环境指标")
 @JsonInclude(JsonInclude.Include.NON_NULL)
 public class HotelProjectEnvKpi {
-    @ApiModelProperty(value = "温度指标")
-    private HotelProjectKpiItem temperatureKpi;
-
-    @ApiModelProperty(value = "co2指标")
-    private HotelProjectKpiItem co2Kpi;
+    @ApiModelProperty(value = "环境指标列表")
+    List<HotelProjectKpiItem> envKpiItems;
 }

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

@@ -19,6 +19,9 @@ import java.util.List;
 @ApiModel("酒店项目指标条目")
 @JsonInclude(JsonInclude.Include.NON_NULL)
 public class HotelProjectKpiItem extends HotelRankVO {
+    @ApiModelProperty(value = "名称")
+    private Double name;
+
     @ApiModelProperty(value = "达标率")
     private Double controlRates;
 

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

@@ -1,7 +1,7 @@
 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 com.persagy.apm.energy.report.monthly.detail.common.model.vo.HotelRankVO;
 import io.swagger.annotations.ApiModel;
 import io.swagger.annotations.ApiModelProperty;
@@ -31,8 +31,6 @@ public class HotelProjectMaintenanceInfo extends HotelRankVO {
     private Double breakCount;
     @ApiModelProperty(value = "数据中断时长")
     private Double breakLostTime;
-    @ApiModelProperty(value = "变损图表信息")
-    private List<DateGraphItemVO> changeLossGraph;
-    @ApiModelProperty(value = "总支不平衡率图表信息")
-    private List<DateGraphItemVO> imbalanceGraph;
+    @ApiModelProperty(value = "图表信息")
+    private List<DateGraphVO> graphs;
 }

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/outline/constants/HotelProjectReportParagraphs.java

@@ -6,7 +6,7 @@ package com.persagy.apm.energy.report.monthly.outline.constants;
  * @author lixing
  * @version V1.0 2021/5/24 4:17 下午
  **/
-public class HotelProjectReportParagraphs {
+public class HotelReportParagraphs {
     /**
      * 费用
      */

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

@@ -0,0 +1,79 @@
+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);
+}

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

@@ -6,7 +6,10 @@ import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.dto.AddR
 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.outline.service.builder.hotel.IHotelProjectReportBuilder;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -14,6 +17,7 @@ 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;
 
 /**
@@ -26,11 +30,11 @@ import java.util.List;
 @Slf4j
 public class HotelProjectReportBuilder implements IHotelProjectReportBuilder {
     @Autowired
-    private IReportBusinessDetailService businessDetailService;
-    @Autowired
     private IReportDetailService reportDetailService;
     @Autowired
     private IReportHotelProjectDetailService reportHotelProjectDetailService;
+    @Autowired
+    private IHotelProjectReportCostService costService;
 
     @Override
     @Transactional(rollbackFor = Exception.class)
@@ -109,9 +113,8 @@ public class HotelProjectReportBuilder implements IHotelProjectReportBuilder {
     @Override
     public HotelProjectCostInfo getCostInfo(ReportOutline reportOutline) {
         List<String> costFunctionIdList = getFunctionsByParagraph(
-                reportOutline.getReportTypeId(), BusinessReportParagraphs.OPEN_COST);
-        // TODO: 2021/6/9
-        return null;
+                reportOutline.getReportTypeId(), HotelReportParagraphs.COST);
+        return costService.getCost(reportOutline, costFunctionIdList);
     }
 
     /**

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

@@ -0,0 +1,241 @@
+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);
+    }
+
+
+
+}

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

@@ -342,11 +342,11 @@ public class ReportOutlineServiceImpl extends ServiceImpl<ReportOutlineMapper, R
         }
 
         if (pageQueryReportOutlineDTO.getStartDate() != null) {
-            queryWrapper.gt(ReportOutline.PROP_REPORT_MONTH, pageQueryReportOutlineDTO.getStartDate());
+            queryWrapper.ge(ReportOutline.PROP_REPORT_MONTH, pageQueryReportOutlineDTO.getStartDate());
         }
 
         if (pageQueryReportOutlineDTO.getEndDate() != null) {
-            queryWrapper.lt(ReportOutline.PROP_REPORT_MONTH, pageQueryReportOutlineDTO.getEndDate());
+            queryWrapper.le(ReportOutline.PROP_REPORT_MONTH, pageQueryReportOutlineDTO.getEndDate());
         }
 
         if (StringUtils.isNotBlank(pageQueryReportOutlineDTO.getStatus())) {