From b1ba48885c599674b7ed19242a1fc266abac7f9d Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期三, 07 五月 2025 16:12:02 +0800 Subject: [PATCH] 最新版本541200007 --- server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/thrid/BoardServiceImpl.java | 66 ++++++++++++++++++++++++++++----- 1 files changed, 56 insertions(+), 10 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/thrid/BoardServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/thrid/BoardServiceImpl.java index 93e4c90..4ed6fa7 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/thrid/BoardServiceImpl.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/thrid/BoardServiceImpl.java @@ -647,6 +647,8 @@ } /** * 銆愭秷闃茬鎺с�戠湅鏉�-瀹炴椂鐩戞祴鏁版嵁 + * 娑插帇鍥哄畾鍊硷細254001 + * 姘村帇鍥哄畾鍊硷細253958 * @return * */ @@ -664,6 +666,8 @@ BaseResponse<BaseListPageResponse<MonitorDataSearchResponse>> response = HKService.minitorDataSearch(param); String pressure = systemDictDataBiz.queryByCode(Constants.WMS_PARAM,Constants.WMS_PRESSURE_LEVEL).getCode(); String liquid = systemDictDataBiz.queryByCode(Constants.WMS_PARAM,Constants.WMS_LIQUID_LEVEL).getCode(); + String pressureUnit = systemDictDataBiz.queryByCode(Constants.HK_PARAM,Constants.PRESSURE_LEVEL_UNIT).getCode(); + String liquidUnit = systemDictDataBiz.queryByCode(Constants.WMS_PARAM,Constants.LIQUID_LEVEL_UNIT).getCode(); if(response != null && StringUtils.equals(response.getCode(), HKConstants.RESPONSE_SUCCEE) && response.getData()!=null ) { List<MonitorDataSearchResponse> r = response.getData().getList(); @@ -671,7 +675,8 @@ for(MonitorDataSearchResponse model : r){ MonitorDataVO m = new MonitorDataVO(); m.setName(model.getName()); - m.setLevel(Constants.equalsInteger(model.getType(),60)?liquid:pressure); +// m.setLevel(Constants.equalsInteger(model.getType(),60)?liquid:pressure); + m.setLevel(getLevelDataByDeviceName(model.getName(),Constants.equalsInteger(model.getType(),60)?liquidUnit:pressureUnit)); m.setDataList(new ArrayList<>()); if(model.getValues()!=null){ List<MonitorDataInfoVO> dataList = new ArrayList<>(); @@ -683,7 +688,6 @@ vm.setCateName(v.getMonitorSpecificName()); vm.setCateCode(v.getMonitorTypeKey()); vm.setTypeCode(v.getMonitorTypeCode()); - vm.setTypeName(v.getMonitorTypeName()); dataList.add(vm); } }else{ @@ -706,6 +710,44 @@ } } return list; + } + + private String getLevelDataByDeviceName(String name,String unit) { + + /** + * { + * "name":"娑�", + * "regionIndexCodes": [ + * "root000000" + * ], + * "isSubRegion": true, + * "resourceType": "fireSensor", + * "pageNo": 1, + * "pageSize": 20, + * "orderBy": "name", + * "orderType": "desc" + * } + */ + String r = ""; + + ResourcesByParamsRequest param = new ResourcesByParamsRequest(); + param.setName(name); + param.setIsSubRegion(Boolean.TRUE); + param.setRegionIndexCodes(new String[]{"root000000"}); + param.setResourceType("fireSensor"); + param.setOrderType("desc"); + param.setOrderBy("name"); + param.setPageNo(1); + param.setPageSize(20); + BaseResponse<BaseListPageResponse<ResourcesByParamsResponse>> response = HKService.resourcesByParams(param); + if(response != null && StringUtils.equals(response.getCode(), HKConstants.RESPONSE_SUCCEE) + && response.getData()!=null ) { + String min = response.getData().getList().get(0).getFireproChannelMinValue(); + String max = response.getData().getList().get(0).getFireproChannelMaxvalue(); + r =StringUtils.defaultString(min,"-")+"~"+StringUtils.defaultString(max,"-") +unit; + } + return r; + } @@ -1943,11 +1985,11 @@ ); //鍦ㄥ洯闀挎湡鐩稿叧鏂逛汉鏁� data.setRelatedTotal( - (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.TWO) && Constants.equalsInteger(i.getCompanyType(),Constants.ZERO)).count() + (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.FOUR) ).count() ); //鍦ㄥ洯鍐呴儴鍛樺伐浜烘暟 data.setInternalTotal( - (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.TWO) && Constants.equalsInteger(i.getCompanyType(),Constants.ONE)).count() + (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.TWO) ).count() ); //鍦ㄥ洯璁垮鏁伴噺 data.setVisitTotal( @@ -1957,7 +1999,11 @@ data.setInParkCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE)).count() ); - //鍦ㄥ洯鐩稿叧鏂硅溅杈� + //鍦ㄥ洯杞﹁締 + data.setInParkCarUserTotal( + (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.FIVE)).count() + ); + /* //鍦ㄥ洯鐩稿叧鏂硅溅杈� data.setRelatedCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.relation)).count() @@ -1966,26 +2012,26 @@ data.setInternalCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.internal)).count() - ); + );*/ //鏉ヨ杞﹁締 data.setVisitCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) - &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.visitor)).count() + &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.fkCar)).count() ); //鑷敱鐗╂祦杞︽暟閲� data.setVisitCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) - &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.selfTruck)).count() + &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.atwlzyCar)).count() ); //甯傚叕鍙稿嵏璐ц溅鏁伴噺 data.setInternalJobCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) - &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.cityComTruck)).count() + &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.sgsxhCar)).count() ); //澶栧崗杞︽暟閲� data.setRelatedJobCarTotal( (int) retentionList.stream().filter(i->Constants.equalsInteger(i.getType(),Constants.THREE) - &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.outTruck)).count() + &&Constants.equalsInteger(i.getCarType(),Constants.RetentionCarType.wxysCar)).count() ); data.setVideoPluginUrl(getVideoUrl()); return data; -- Gitblit v1.9.3