756d157b sonin

Merge remote-tracking branch 'origin/master' into master

2 个父辈 f32b963e c8d96a53
...@@ -285,6 +285,7 @@ public class DeviceStatusJob implements Job { ...@@ -285,6 +285,7 @@ public class DeviceStatusJob implements Job {
285 AlarmRecordHistory alarmRecordHistory = new AlarmRecordHistory(); 285 AlarmRecordHistory alarmRecordHistory = new AlarmRecordHistory();
286 alarmRecordHistory.setAlarmParamCode(plc); 286 alarmRecordHistory.setAlarmParamCode(plc);
287 alarmRecordHistory.setAlarmRuleType("B001B005"); 287 alarmRecordHistory.setAlarmRuleType("B001B005");
288 alarmRecordHistory.setAlarmRuleTypeTreepath("B001,B001B005");
288 alarmRecordHistory.setAlarmParamType(paramType); 289 alarmRecordHistory.setAlarmParamType(paramType);
289 alarmRecordHistory.setActualAvgValue("断线"); 290 alarmRecordHistory.setActualAvgValue("断线");
290 alarmRecordHistory.setDelFlag(1); 291 alarmRecordHistory.setDelFlag(1);
......
...@@ -5,6 +5,7 @@ import com.skua.core.api.vo.Result; ...@@ -5,6 +5,7 @@ import com.skua.core.api.vo.Result;
5 import com.skua.core.aspect.annotation.AutoLog; 5 import com.skua.core.aspect.annotation.AutoLog;
6 import com.skua.core.context.BaseContextHandler; 6 import com.skua.core.context.BaseContextHandler;
7 import com.skua.core.util.ConvertUtils; 7 import com.skua.core.util.ConvertUtils;
8 import com.skua.modules.common.service.ICommonSqlService;
8 import com.skua.modules.custom.service.IFCustomReportDatasetService; 9 import com.skua.modules.custom.service.IFCustomReportDatasetService;
9 import com.skua.modules.dataAnalysis.service.ICommandCentreService; 10 import com.skua.modules.dataAnalysis.service.ICommandCentreService;
10 import com.skua.modules.algorithm.service.impl.ReportItemvService; 11 import com.skua.modules.algorithm.service.impl.ReportItemvService;
...@@ -12,7 +13,6 @@ import com.skua.modules.algorithm.vo.DepartLoadRateResultVO; ...@@ -12,7 +13,6 @@ import com.skua.modules.algorithm.vo.DepartLoadRateResultVO;
12 import com.skua.modules.algorithm.vo.StackedAreaChartDataVO; 13 import com.skua.modules.algorithm.vo.StackedAreaChartDataVO;
13 import com.skua.modules.algorithm.vo.WaterTreatmentVO; 14 import com.skua.modules.algorithm.vo.WaterTreatmentVO;
14 import com.skua.modules.common.vo.DateVO; 15 import com.skua.modules.common.vo.DateVO;
15 import com.skua.modules.equipment.vo.EquipmentRepairAnalysisVO;
16 import com.skua.modules.guest.util.DateUtil; 16 import com.skua.modules.guest.util.DateUtil;
17 import com.skua.modules.report.vo.DepartDrugResult; 17 import com.skua.modules.report.vo.DepartDrugResult;
18 import com.skua.modules.report.vo.FRportlCommandCenterVO; 18 import com.skua.modules.report.vo.FRportlCommandCenterVO;
...@@ -56,7 +56,8 @@ public class SysCommandCentreController { ...@@ -56,7 +56,8 @@ public class SysCommandCentreController {
56 private ReportItemvService reportItemvService; 56 private ReportItemvService reportItemvService;
57 @Autowired 57 @Autowired
58 private IFCustomReportDatasetService reportDatasetService; 58 private IFCustomReportDatasetService reportDatasetService;
59 59 @Autowired
60 private ICommonSqlService commonSqlService;
60 61
61 /** 62 /**
62 * 分页列表查询 63 * 分页列表查询
...@@ -71,12 +72,12 @@ public class SysCommandCentreController { ...@@ -71,12 +72,12 @@ public class SysCommandCentreController {
71 DateVO dateVO = new DateVO(reportItemvParam.getStartDate()); 72 DateVO dateVO = new DateVO(reportItemvParam.getStartDate());
72 String departIds = BaseContextHandler.getDeparts(); 73 String departIds = BaseContextHandler.getDeparts();
73 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 74 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
74 departIds = reportItemvParam.getDepartIds(); 75 departIds = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
75 } 76 }
76 //本月数据 77 //本月数据
77 String monthCSL = reportItemvService.getSumCSL(departIds, dateVO.getNowMonthStartDate(), dateVO.getNowMonthEndDate()); 78 String monthCSL = reportItemvService.getSumCSL(departIds, dateVO.getNowMonthStartDate(), dateVO.getNowMonthEndDate());
78 //环比 上月数据 79 //环比 上月数据
79 String lastMonthCSL = reportItemvService.getSumCSL(departIds, dateVO.getNowMonthStartDate(), dateVO.getNowMonthEndDate()); 80 String lastMonthCSL = reportItemvService.getSumCSL(departIds, dateVO.getLastMonthStartTime(), dateVO.getLastMonthEndTime());
80 //同比 去年数据 81 //同比 去年数据
81 String lastYearCSL = reportItemvService.getSumCSL(departIds, dateVO.getLastYearMonthStartTime(), dateVO.getLastYearMonthEndTime()); 82 String lastYearCSL = reportItemvService.getSumCSL(departIds, dateVO.getLastYearMonthStartTime(), dateVO.getLastYearMonthEndTime());
82 83
...@@ -84,11 +85,11 @@ public class SysCommandCentreController { ...@@ -84,11 +85,11 @@ public class SysCommandCentreController {
84 long lastMonthDifferDay = DateUtils.differenceDay(dateVO.getLastMonthStartTime(),dateVO.getLastMonthEndTime()); 85 long lastMonthDifferDay = DateUtils.differenceDay(dateVO.getLastMonthStartTime(),dateVO.getLastMonthEndTime());
85 long lastYearDifferDay = DateUtils.differenceDay(dateVO.getLastYearMonthStartTime(),dateVO.getLastYearMonthEndTime()); 86 long lastYearDifferDay = DateUtils.differenceDay(dateVO.getLastYearMonthStartTime(),dateVO.getLastYearMonthEndTime());
86 //月对象数据 value, valueTb, valueHb 87 //月对象数据 value, valueTb, valueHb
87 FRportlCommandCenterVO monthDataVO = new FRportlCommandCenterVO("月汇总数据",JSUtils.divide(monthCSL,10000),JSUtils.divide(lastMonthCSL,10000),JSUtils.divide(lastYearCSL,10000)); 88 FRportlCommandCenterVO monthDataVO = new FRportlCommandCenterVO("月汇总数据",JSUtils.divide(monthCSL,10000),JSUtils.divide(lastYearCSL,10000),JSUtils.divide(lastMonthCSL,10000));
88 //日处理对象 89 //日处理对象
89 FRportlCommandCenterVO avgDayDataVO = new FRportlCommandCenterVO("日均处理水量",JSUtils.divide(monthCSL,nowDifferDay*10000),JSUtils.divide(lastMonthCSL,lastMonthDifferDay*10000),JSUtils.divide(lastYearCSL,lastYearDifferDay*10000)); 90 FRportlCommandCenterVO avgDayDataVO = new FRportlCommandCenterVO("日均处理水量",JSUtils.divide(monthCSL,nowDifferDay*10000),JSUtils.divide(lastYearCSL,lastYearDifferDay*10000),JSUtils.divide(lastMonthCSL,lastMonthDifferDay*10000));
90 fReportItemvList.add( monthDataVO); 91 fReportItemvList.add(monthDataVO);
91 fReportItemvList.add( avgDayDataVO ); 92 fReportItemvList.add(avgDayDataVO);
92 93
93 //年数据统计: 94 //年数据统计:
94 String total = factoryInfoService.querySumProScale( JSUtils.quoteEach(departIds,",") ); 95 String total = factoryInfoService.querySumProScale( JSUtils.quoteEach(departIds,",") );
...@@ -109,7 +110,7 @@ public class SysCommandCentreController { ...@@ -109,7 +110,7 @@ public class SysCommandCentreController {
109 Result<DepartLoadRateResultVO > result = new Result<>(); 110 Result<DepartLoadRateResultVO > result = new Result<>();
110 String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674 111 String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674
111 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 112 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
112 departIds = reportItemvParam.getDepartIds(); 113 departIds = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
113 } 114 }
114 Integer loadRateType = reportItemvParam.getLoadRateType(); 115 Integer loadRateType = reportItemvParam.getLoadRateType();
115 if(loadRateType == null ) loadRateType = 1; 116 if(loadRateType == null ) loadRateType = 1;
...@@ -142,7 +143,7 @@ public class SysCommandCentreController { ...@@ -142,7 +143,7 @@ public class SysCommandCentreController {
142 Result<List<FRportlCommandCenterVO>> result = new Result(); 143 Result<List<FRportlCommandCenterVO>> result = new Result();
143 String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674 144 String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674
144 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 145 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
145 departIds = reportItemvParam.getDepartIds(); 146 departIds = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
146 } 147 }
147 List<FRportlCommandCenterVO> dataList = reportItemvService.statisticsByCement(departIds,reportItemvParam.getStartDate(),reportItemvParam.getEndDate()); 148 List<FRportlCommandCenterVO> dataList = reportItemvService.statisticsByCement(departIds,reportItemvParam.getStartDate(),reportItemvParam.getEndDate());
148 result.setResult(dataList ); 149 result.setResult(dataList );
...@@ -198,7 +199,7 @@ public class SysCommandCentreController { ...@@ -198,7 +199,7 @@ public class SysCommandCentreController {
198 Result<List<FRportlCommandCenterVO>> result = new Result(); 199 Result<List<FRportlCommandCenterVO>> result = new Result();
199 String departId = BaseContextHandler.getDeparts(); 200 String departId = BaseContextHandler.getDeparts();
200 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 201 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
201 departId = reportItemvParam.getDepartIds(); 202 departId = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
202 } 203 }
203 List<FRportlCommandCenterVO> dataList = reportItemvService.statisticsByElectricity(departId,reportItemvParam.getStartDate(),reportItemvParam.getEndDate()); 204 List<FRportlCommandCenterVO> dataList = reportItemvService.statisticsByElectricity(departId,reportItemvParam.getStartDate(),reportItemvParam.getEndDate());
204 result.setResult(dataList ); 205 result.setResult(dataList );
...@@ -243,7 +244,7 @@ public class SysCommandCentreController { ...@@ -243,7 +244,7 @@ public class SysCommandCentreController {
243 List<String> consumeList = new ArrayList<>();//电耗集合 244 List<String> consumeList = new ArrayList<>();//电耗集合
244 String departIds = BaseContextHandler.getDeparts(); 245 String departIds = BaseContextHandler.getDeparts();
245 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 246 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
246 departIds = reportItemvParam.getDepartIds(); 247 departIds = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
247 } 248 }
248 List<ReportDateTrendVO> dlhjDateList = reportItemvService.getDayDateFieldList(ReportConstant.view3a24, "DLHJ", departIds, reportItemvParam.getStartDate(), reportItemvParam.getEndDate()); 249 List<ReportDateTrendVO> dlhjDateList = reportItemvService.getDayDateFieldList(ReportConstant.view3a24, "DLHJ", departIds, reportItemvParam.getStartDate(), reportItemvParam.getEndDate());
249 List<ReportDateTrendVO> cslDateList = reportItemvService.getDayDateFieldList(ReportConstant.view2119, "CSL", departIds, reportItemvParam.getStartDate(), reportItemvParam.getEndDate()); 250 List<ReportDateTrendVO> cslDateList = reportItemvService.getDayDateFieldList(ReportConstant.view2119, "CSL", departIds, reportItemvParam.getStartDate(), reportItemvParam.getEndDate());
...@@ -312,7 +313,7 @@ public class SysCommandCentreController { ...@@ -312,7 +313,7 @@ public class SysCommandCentreController {
312 reportItemvParam.setEndDate( DateUtils.formatDate(endDate ,"YYYY-MM")); 313 reportItemvParam.setEndDate( DateUtils.formatDate(endDate ,"YYYY-MM"));
313 String departIds = BaseContextHandler.getDeparts(); 314 String departIds = BaseContextHandler.getDeparts();
314 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 315 if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){
315 departIds = reportItemvParam.getDepartIds(); 316 departIds = commonSqlService.getChildFactorys(reportItemvParam.getDepartIds());
316 } 317 }
317 reportItemvParam.setDepartIds( JSUtils.quoteEach(departIds,",")); 318 reportItemvParam.setDepartIds( JSUtils.quoteEach(departIds,","));
318 List<ReportDateTrendVO> fyDataList = commandCentreService.getFyData(reportItemvParam); 319 List<ReportDateTrendVO> fyDataList = commandCentreService.getFyData(reportItemvParam);
...@@ -363,14 +364,11 @@ public class SysCommandCentreController { ...@@ -363,14 +364,11 @@ public class SysCommandCentreController {
363 @AutoLog(value = "指挥中心-药剂趋势") 364 @AutoLog(value = "指挥中心-药剂趋势")
364 @ApiOperation(value="指挥中心-药剂趋势", notes="指挥中心-药剂趋势") 365 @ApiOperation(value="指挥中心-药剂趋势", notes="指挥中心-药剂趋势")
365 @GetMapping(value = "/statisticsByYjqs") 366 @GetMapping(value = "/statisticsByYjqs")
366 public Result<DepartDrugResult> statisticsByYjqs(@RequestParam(name = "month", required = true)String month) { 367 public Result<DepartDrugResult> statisticsByYjqs(@RequestParam(name = "month", required = true) String month,
367 // DateVO dateVO = new DateVO(month); 368 @RequestParam(name = "departIds", required = true) String departIds) {
368 369 // String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674
369 String departIds = BaseContextHandler.getDeparts();//1818214519948836864,1711662624459804674 370 String departId = commonSqlService.getChildFactorys(departIds);
370 /* if(StringUtils.isNotEmpty(reportItemvParam.getDepartIds()) ){ 371 DepartDrugResult departDrugResult = commandCentreService.getYhTotal(departId,month);
371 departIds = reportItemvParam.getDepartIds();
372 }*/
373 DepartDrugResult departDrugResult = commandCentreService.getYhTotal(departIds,month);
374 Result<DepartDrugResult> result = new Result<>(); 372 Result<DepartDrugResult> result = new Result<>();
375 result.setSuccess(true); 373 result.setSuccess(true);
376 result.setResult(departDrugResult); 374 result.setResult(departDrugResult);
......
...@@ -60,7 +60,7 @@ public class CommandCentreServiceImpl implements ICommandCentreService { ...@@ -60,7 +60,7 @@ public class CommandCentreServiceImpl implements ICommandCentreService {
60 List<DepartDrugDataVO> drugList = null; 60 List<DepartDrugDataVO> drugList = null;
61 drugList = fReportItemvMapper.getYhList(month,monthTb,monthHb, 61 drugList = fReportItemvMapper.getYhList(month,monthTb,monthHb,
62 dataViewName2119,dataViewName2119tb,dataViewName2119hb, 62 dataViewName2119,dataViewName2119tb,dataViewName2119hb,
63 dataViewName3a24,dataViewName3a24tb,dataViewName3a24hb); 63 dataViewName3a24,dataViewName3a24tb,dataViewName3a24hb,departIds);
64 departDrugResult.setDrugList(drugList); 64 departDrugResult.setDrugList(drugList);
65 return departDrugResult; 65 return departDrugResult;
66 } 66 }
......
...@@ -52,7 +52,8 @@ public interface FReportItemvMapper extends BaseMapper<FReportItemv> { ...@@ -52,7 +52,8 @@ public interface FReportItemvMapper extends BaseMapper<FReportItemv> {
52 List<DepartDrugDataVO> getYhList(@Param("month") String month, @Param("monthTb") String monthTb, @Param("monthHb") String monthHb, 52 List<DepartDrugDataVO> getYhList(@Param("month") String month, @Param("monthTb") String monthTb, @Param("monthHb") String monthHb,
53 @Param("dataViewName2119") String dataViewName2119, @Param("dataViewName2119tb") String dataViewName2119tb, 53 @Param("dataViewName2119") String dataViewName2119, @Param("dataViewName2119tb") String dataViewName2119tb,
54 @Param("dataViewName2119hb") String dataViewName2119hb, @Param("dataViewName3a24") String dataViewName3a24, 54 @Param("dataViewName2119hb") String dataViewName2119hb, @Param("dataViewName3a24") String dataViewName3a24,
55 @Param("dataViewName3a24tb") String dataViewName3a24tb, @Param("dataViewName3a24hb") String dataViewName3a24hb); 55 @Param("dataViewName3a24tb") String dataViewName3a24tb, @Param("dataViewName3a24hb") String dataViewName3a24hb,
56 @Param("departIds") String departIds);
56 57
57 DepartDrugResult getYhData(@Param("month") String month, @Param("monthTb") String monthTb, @Param("monthHb") String monthHb, 58 DepartDrugResult getYhData(@Param("month") String month, @Param("monthTb") String monthTb, @Param("monthHb") String monthHb,
58 @Param("dataViewName3a24") String dataViewName3a24,@Param("dataViewName3a24tb") String dataViewName3a24tb, 59 @Param("dataViewName3a24") String dataViewName3a24,@Param("dataViewName3a24tb") String dataViewName3a24tb,
......
...@@ -162,6 +162,10 @@ ...@@ -162,6 +162,10 @@
162 ) dhhb ON dhhb.depart_id = d.id 162 ) dhhb ON dhhb.depart_id = d.id
163 WHERE 163 WHERE
164 d.depart_type = '1' 164 d.depart_type = '1'
165 and d.id in
166 <foreach item="item" index="index" collection="departIds.split(',')" open="(" separator="," close=")">
167 '${item}'
168 </foreach>
165 ORDER BY dh.yjdh desc,d.depart_order 169 ORDER BY dh.yjdh desc,d.depart_order
166 </select> 170 </select>
167 <select id="getYhData" resultType="com.skua.modules.report.vo.DepartDrugResult"> 171 <select id="getYhData" resultType="com.skua.modules.report.vo.DepartDrugResult">
......
...@@ -100,9 +100,9 @@ public class SysDepartServiceImpl extends ServiceImpl<SysDepartMapper, SysDepart ...@@ -100,9 +100,9 @@ public class SysDepartServiceImpl extends ServiceImpl<SysDepartMapper, SysDepart
100 listResult.addAll(jtList); 100 listResult.addAll(jtList);
101 } 101 }
102 } 102 }
103 if (!StringUtils.isBlank(departType)) { 103 // if (!StringUtils.isBlank(departType)) {
104 listResult = filterDepartList(listResult); 104 // listResult = filterDepartList(listResult);
105 } 105 // }
106 return listResult; 106 return listResult;
107 } 107 }
108 108
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!