Selaa lähdekoodia

计算 维保超阈值天数

miaolijing 3 vuotta sitten
vanhempi
commit
073c7a1443

+ 3 - 2
src/main/java/com/persagy/apm/diagnose/maintenance/service/impl/ProjectDataRecordServiceImpl.java

@@ -577,7 +577,7 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
         if (!CollectionUtils.isEmpty(recordList)) {
             //倒序排
             recordList.sort(Comparator.comparing(MonitorIndicatorRecord::getDataTime).reversed());
-
+            Date checkDate = alarmDate;
             if (!StringUtils.isBlank(tempFormula)) {
                 if (!CollectionUtils.isEmpty(recordList)) {
                     for (MonitorIndicatorRecord record : recordList) {
@@ -585,11 +585,12 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
                         if (!isFlag) {
                             return record.getDataTime();
                         }
+                        checkDate = record.getDataTime();
                     }
                 }
             }
             //继续往前找报警开始日期
-            return getStartAlarmDate(checkStartDate, projectId, objId, indicatorId, operator, tempFormula);
+            return getStartAlarmDate(checkDate, projectId, objId, indicatorId, operator, tempFormula);
         }
         return alarmDate;
     }

+ 8 - 3
src/main/java/com/persagy/apm/diagnose/service/WeatherServiceImpl.java

@@ -49,17 +49,22 @@ public class WeatherServiceImpl {
             JSONObject resultObj = JSONObject.parseObject(result, JSONObject.class);
 
             if (!resultObj.getString("result").equalsIgnoreCase(SUCCESS)) {
-                log.error("查询小时天气历史数据返回结果:{}", result);
+                log.error("查询室外小时天气历史数据返回结果:{}", result);
             /*// todo 由于在没有数据情况下接口返回也是失败,但是其实是成功,所以不抛异常
             if (null != resultObj.get("reason")) {
                 throw new Exception("查询小时天气历史数据请求返回失败");
             }*/
-                throw new Exception("查询小时天气历史数据请求返回失败");
+                return new ArrayList<>();
+               // throw new Exception("查询小时天气历史数据请求返回失败");
             }
             List<JSONObject> jsonObjectList = JSON.parseArray(JSON.toJSONString(resultObj.get("content")), JSONObject.class);
             if (!CollectionUtils.isEmpty(jsonObjectList)){
                 List<WeatherDTO> weatherDTOList = new ArrayList<>();
                 for (JSONObject obj:jsonObjectList) {
+                    //温湿度 任意为空 跳过
+                    if (null == obj.getDouble("temperature") || null == obj.getDouble("humidity")){
+                        continue;
+                    }
                     WeatherDTO dto = new WeatherDTO();
                     dto.setHourTime(obj.getDate("hourTime"));
                     dto.setTemperature(obj.getDouble("temperature"));
@@ -69,7 +74,7 @@ public class WeatherServiceImpl {
                 return weatherDTOList;
             }
         } catch (Exception e) {
-            log.error("---------出错了---------");
+            log.error("---------获取室外小时天气历史数据出错了---------");
             log.error("出错的请求路径是:{}", requestUrl);
             log.error("出错的请求参数是:{}", JSON.toJSONString(paramMap));
             // 重试