|
@ -11,6 +11,7 @@ import com.yihu.iot.service.device.IotPatientDeviceService;
|
|
|
import com.yihu.iot.service.equipment.IotEqtDetailService;
|
|
|
import com.yihu.iot.service.label.FigureLabelSerachService;
|
|
|
import com.yihu.iot.service.platform.IotInterfaceLogService;
|
|
|
import com.yihu.iot.util.conceal.ConcealUtil;
|
|
|
import com.yihu.iot.util.excel.HibenateUtils;
|
|
|
import com.yihu.jw.entity.iot.dict.IotSystemDictDO;
|
|
|
import com.yihu.jw.entity.iot.equipment.IotEquipmentDetailDO;
|
|
@ -79,10 +80,9 @@ public class MonitorPlatformService {
|
|
|
* @param diseaseCondition
|
|
|
* @return
|
|
|
*/
|
|
|
public MixEnvelop<LocationDataVO, LocationDataVO> findDeviceLocations(Integer diseaseCondition, Integer page, Integer size, String type,String deviceType) throws IOException {
|
|
|
public MixEnvelop<LocationDataVO, LocationDataVO> findDeviceLocations(Integer diseaseCondition, Integer page, Integer size, String type,String deviceType,String deviceName) throws IOException {
|
|
|
MixEnvelop<LocationDataVO, LocationDataVO> envelop = new MixEnvelop<>();
|
|
|
MixEnvelop<LocationDataVO, LocationDataVO> envelopTmp = null;
|
|
|
JSONArray jsonArray = new JSONArray();
|
|
|
Integer total = 0;
|
|
|
if(org.apache.commons.lang.StringUtils.isNotBlank(type)){
|
|
|
String re = searchpatientdevicesn(type, page, size);
|
|
@ -115,49 +115,79 @@ public class MonitorPlatformService {
|
|
|
List<LocationDataVO> euipmentList = new ArrayList<>();
|
|
|
int totalEqCount=0;
|
|
|
int totalCount=0;
|
|
|
//查找全部
|
|
|
if(diseaseCondition!=null){
|
|
|
JSONObject json = new JSONObject();
|
|
|
json.put("andOr","and");
|
|
|
json.put("field","diseaseCondition");
|
|
|
json.put("condition","=");
|
|
|
json.put("value",diseaseCondition);
|
|
|
jsonArray.add(json);
|
|
|
}
|
|
|
//小屋总数
|
|
|
if(deviceType.contains("5")){
|
|
|
totalEqCount = iotEqtDetailService.getEquipmentCount();
|
|
|
if (org.apache.commons.lang3.StringUtils.isBlank(deviceName)||(org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName) &&deviceName.contains("健康小屋"))){
|
|
|
totalEqCount = iotEqtDetailService.getEquipmentCount();
|
|
|
}
|
|
|
}
|
|
|
String[] categoryCodes= deviceType.split(",");
|
|
|
if(categoryCodes.length==1&&"5".equals(deviceType)){
|
|
|
euipmentList = iotEqtDetailService.getEquipmentLocation(page,size);
|
|
|
envelop.getDetailModelList().addAll(euipmentList);
|
|
|
if (org.apache.commons.lang3.StringUtils.isBlank(deviceName)||(org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName) &&deviceName.contains("健康小屋"))){
|
|
|
euipmentList = iotEqtDetailService.getEquipmentLocation(page,size);
|
|
|
envelop.getDetailModelList().addAll(euipmentList);
|
|
|
}
|
|
|
}
|
|
|
else{
|
|
|
if(deviceType.contains("5")){
|
|
|
euipmentList = iotEqtDetailService.getEquipmentLocation(page,size);
|
|
|
envelop.getDetailModelList().addAll(euipmentList);
|
|
|
if (org.apache.commons.lang3.StringUtils.isBlank(deviceName)||(org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName) &&deviceName.contains("健康小屋"))){
|
|
|
euipmentList = iotEqtDetailService.getEquipmentLocation(page,size);
|
|
|
envelop.getDetailModelList().addAll(euipmentList);
|
|
|
}
|
|
|
}
|
|
|
for (String categoryCode:categoryCodes){
|
|
|
JSONObject json = new JSONObject();
|
|
|
JSONArray jsonArray = new JSONArray();
|
|
|
if(diseaseCondition!=null){
|
|
|
json.put("andOr","and");
|
|
|
json.put("field","diseaseCondition");
|
|
|
json.put("condition","=");
|
|
|
json.put("value",diseaseCondition);
|
|
|
jsonArray.add(json);
|
|
|
}
|
|
|
if(!"5".equals(categoryCode)){
|
|
|
JSONObject json = new JSONObject();
|
|
|
json.put("andOr","and");
|
|
|
json.put("field","categoryCode");
|
|
|
json.put("condition","=");
|
|
|
json.put("value",Integer.parseInt(categoryCode));
|
|
|
jsonArray.add(json);
|
|
|
|
|
|
json = new JSONObject();
|
|
|
List<String> listTmp = new ArrayList<>();
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName)){
|
|
|
String[] deviceNames = deviceName.split(",");
|
|
|
for (String tmp :deviceNames){
|
|
|
String sql="select DISTINCT device_code from device.wlyy_devices wd INNER JOIN wlyy.wlyy_patient_device pd on pd.device_sn = wd.device_code where wd.device_name like '%"+tmp+"%'";
|
|
|
List<String> tmpList = jdbcTemplate.queryForList(sql,String.class);
|
|
|
listTmp.addAll(tmpList);
|
|
|
}
|
|
|
if (listTmp.size()!=0){
|
|
|
json.put("andOr","and");
|
|
|
json.put("field","deviceSn");
|
|
|
json.put("condition","in");
|
|
|
json.put("value",listTmp);
|
|
|
jsonArray.add(json);
|
|
|
}
|
|
|
}
|
|
|
else{
|
|
|
String sql="select DISTINCT device_code from device.wlyy_devices wd INNER JOIN wlyy.wlyy_patient_device pd on pd.device_sn = wd.device_code ";
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(deviceType)){
|
|
|
sql+="and pd.category_code in ('"+deviceType.replace(",","','")+"') ";
|
|
|
}
|
|
|
List<String> tmpList = jdbcTemplate.queryForList(sql,String.class);
|
|
|
json.put("andOr","and");
|
|
|
json.put("field","deviceSn");
|
|
|
json.put("condition","in");
|
|
|
json.put("value",tmpList);
|
|
|
jsonArray.add(json);
|
|
|
}
|
|
|
JSONObject jsonObject = new JSONObject();
|
|
|
jsonObject.put("filter",jsonArray);
|
|
|
jsonObject.put("page",page);
|
|
|
jsonObject.put("size",size);
|
|
|
List<LocationDataVO> locationDataVOList = iotPatientDeviceService.findDeviceLocationsByIdCard(jsonObject.toString());
|
|
|
List<LocationDataVO> list2 = iotPatientDeviceService.addNameAndCodeToList(locationDataVOList);
|
|
|
//figureLabelSerachService.getFigureLabelByList(locationDataVOList);
|
|
|
envelop.getDetailModelList().addAll(list2);
|
|
|
totalCount += iotPatientDeviceService.getESCount(jsonObject.toString());
|
|
|
jsonArray.remove(json);
|
|
|
if (jsonArray.size()!=0){
|
|
|
List<LocationDataVO> locationDataVOList = iotPatientDeviceService.findDeviceLocationsByIdCard(jsonObject.toString());
|
|
|
List<LocationDataVO> list2 = iotPatientDeviceService.addNameAndCodeToList(locationDataVOList);
|
|
|
//figureLabelSerachService.getFigureLabelByList(locationDataVOList);
|
|
|
envelop.getDetailModelList().addAll(list2);
|
|
|
totalCount += iotPatientDeviceService.getESCount(jsonObject.toString());
|
|
|
}
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
|
envelop.setTotalCount(totalCount>totalEqCount?totalCount:totalEqCount);
|
|
@ -798,6 +828,20 @@ public class MonitorPlatformService {
|
|
|
|
|
|
return new JSONObject();
|
|
|
}
|
|
|
|
|
|
public JSONObject getTotalRange(String startTime, String endTime,
|
|
|
String deviceType, String area, String hospital){
|
|
|
JSONObject result = new JSONObject();
|
|
|
result.put("grant",totalRange(startTime,endTime,deviceType,area,hospital,"85"));
|
|
|
result.put("binding",totalRange(startTime,endTime,deviceType,area,hospital,"86"));
|
|
|
result.put("guide",totalRange(startTime,endTime,deviceType,area,hospital,"88"));
|
|
|
result.put("malfunction",totalRange(startTime,endTime,deviceType,area,hospital,"0"));
|
|
|
result.put("diseaseUsing",diseaseUseRange(startTime,endTime,deviceType,area,hospital));
|
|
|
result.put("diseaseCover",diseaseRange(startTime,endTime,deviceType,area,hospital));
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 慢病患者设备使用率
|
|
|
* @param startTime
|
|
@ -890,7 +934,7 @@ public class MonitorPlatformService {
|
|
|
* @return
|
|
|
*/
|
|
|
public JSONArray warningInformationAlarm_new(Integer page,Integer pageSize,String startTime,String endTime,
|
|
|
String deviceType,String area,String hospital){
|
|
|
String deviceType,String area,String hospital,String deviceName){
|
|
|
String url = "/wlyygc/iot_monitoring/warningInformationAlarm_new";
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("page",page);
|
|
@ -900,6 +944,7 @@ public class MonitorPlatformService {
|
|
|
params.put("deviceType",deviceType);
|
|
|
params.put("area",area);
|
|
|
params.put("hospital",hospital);
|
|
|
params.put("deviceName",deviceName);
|
|
|
String response = sendGet(url,params);
|
|
|
JSONObject json = JSONObject.parseObject(response);
|
|
|
if(json.getInteger("status")==200){
|
|
@ -941,17 +986,35 @@ public class MonitorPlatformService {
|
|
|
* @return
|
|
|
*/
|
|
|
public JSONArray datafiltering(String name){
|
|
|
String url = "/wlyygc/iot_monitoring/datafiltering";
|
|
|
Map<String, Object> params = new HashMap<>();
|
|
|
params.put("name",name);
|
|
|
String response = sendGet(url,params);
|
|
|
JSONObject json = JSONObject.parseObject(response);
|
|
|
if(json.getInteger("status")==200){
|
|
|
JSONArray jsonArray = json.getJSONArray("data");
|
|
|
StringBuffer sql = new StringBuffer("SELECT d.category_code as categoryCode,d.id,d.device_sn deviceSn,p.code,p.name,d.device_name deviceName ");
|
|
|
sql.append("from wlyy.wlyy_patient_device d,wlyy.wlyy_patient p ");
|
|
|
sql.append("WHERE d.`user` = p.`code` ");
|
|
|
if(org.apache.commons.lang3.StringUtils.isNotBlank(name)){
|
|
|
sql.append("and (d.device_sn like '%"+name+"%' or p.`name` = '"+name+"') ");
|
|
|
}
|
|
|
List<JSONObject> jsonArray = myJdbcTemplate.queryJson(sql.toString(),new Object[]{});
|
|
|
if(jsonArray.size()==0){
|
|
|
sql= new StringBuffer(" select '5' as categoryCode, id,device_code as deviceSn,null as code,null as name,'健康小屋' as deviceName from xmiot.iot_equipmet_detail where device_code like '%"+name+"%'");
|
|
|
jsonArray = myJdbcTemplate.queryJson(sql.toString(),new Object[]{});
|
|
|
}
|
|
|
|
|
|
for (int i=0;i<jsonArray.size();i++){
|
|
|
com.alibaba.fastjson.JSONObject jsonObj= jsonArray.get(i);
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(jsonObj.getString("name"))){
|
|
|
jsonObj.put("name", ConcealUtil.nameOrAddrConceal(jsonObj.getString("name")));
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// String url = "/wlyygc/iot_monitoring/datafiltering";
|
|
|
// Map<String, Object> params = new HashMap<>();
|
|
|
// params.put("name",name);
|
|
|
// String response = sendGet(url,params);
|
|
|
// JSONObject json = JSONObject.parseObject(response);
|
|
|
// if(json.getInteger("status")==200){
|
|
|
// JSONArray jsonArray = json.getJSONArray("data");
|
|
|
for(int i=0;i<jsonArray.size();i++){
|
|
|
JSONObject data = jsonArray.getJSONObject(i);
|
|
|
JSONObject data = jsonArray.get(i);
|
|
|
String deviceSn = data.getString("deviceSn");
|
|
|
|
|
|
JSONArray jsonArray1 = new JSONArray();
|
|
|
JSONObject json1 = new JSONObject();
|
|
|
json1.put("andOr","and");
|
|
@ -977,10 +1040,9 @@ public class MonitorPlatformService {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
return jsonArray;
|
|
|
}
|
|
|
|
|
|
return new JSONArray();
|
|
|
JSONArray result = new JSONArray();
|
|
|
result.addAll(jsonArray);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
|
|
@ -1118,7 +1180,7 @@ public class MonitorPlatformService {
|
|
|
StringBuffer sql = new StringBuffer("SELECT a.category_code type,a.device_name,a.c as 'using',b.c-a.c as 'stock',b.c as 'total' from ( ");
|
|
|
StringBuffer sqlCondition = new StringBuffer();
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName)){
|
|
|
sqlCondition.append("and d.device_name='"+deviceName+"' ");
|
|
|
sqlCondition.append("and d.device_name in ('").append(deviceName.replace(",","','")).append("') ");
|
|
|
}
|
|
|
sql.append("SELECT d.category_code,d.device_name, COUNT(*) c from wlyy.wlyy_patient_device d,wlyy.wlyy_sign_family f WHERE f.`status`>0 and f.patient = d.`user` "+sqlCondition+" ");
|
|
|
if ("0".equals(showLevel)){//组合一体机(5健康小屋,取自物联网),单体征测量仪(2血压计、1血糖仪)
|
|
@ -1206,7 +1268,7 @@ public class MonitorPlatformService {
|
|
|
result.put("lostContact",lostContact);
|
|
|
}
|
|
|
//deviceType包含小屋且设备名称为空||deviceType包含小屋且设备名称为健康小屋。
|
|
|
if ((deviceType.contains("5")&&org.apache.commons.lang3.StringUtils.isNoneBlank(deviceType))||(deviceType.contains("5")&&org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName)&&"健康小屋".equals(deviceName))){
|
|
|
if ((deviceType.contains("5")&&org.apache.commons.lang3.StringUtils.isBlank(deviceName))||(deviceType.contains("5")&&org.apache.commons.lang3.StringUtils.isNoneBlank(deviceName)&&deviceName.contains("健康小屋"))){
|
|
|
String sql = "select COUNT(*) from xmiot.iot_equipmet_detail";
|
|
|
Integer count = jdbcTemplate.queryForObject(sql,Integer.class);
|
|
|
JSONObject tmp = new JSONObject();
|
|
@ -1249,9 +1311,9 @@ public class MonitorPlatformService {
|
|
|
|
|
|
public String getRange(int first, int second, int i) {
|
|
|
if (second == 0 && first > 0) {
|
|
|
return "100%";
|
|
|
return "100";
|
|
|
} else if (second == 0 && first == 0) {
|
|
|
return "0.00%";
|
|
|
return "0.00";
|
|
|
}
|
|
|
float size = (float) (first * 100) / second;
|
|
|
DecimalFormat df = new DecimalFormat("0.00");//格式化小数,不足的补0
|
|
@ -1300,7 +1362,7 @@ public class MonitorPlatformService {
|
|
|
}
|
|
|
//失联
|
|
|
if("2".equals(quotaCode)){
|
|
|
sql = new StringBuffer("SELECT count(*) from wlyy.wlyy_patient_device d,wlyy.wlyy_sign_family f");
|
|
|
sql = new StringBuffer("SELECT count(*) from wlyy.wlyy_patient_device d,wlyy.wlyy_sign_family f ");
|
|
|
sqlCondition = new StringBuffer(" where 1=1 ");
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(area)){
|
|
|
sql.append("LEFT JOIN wlyy.dm_hospital dh on f.hospital = dh.`code` ");
|
|
@ -1311,14 +1373,18 @@ public class MonitorPlatformService {
|
|
|
}
|
|
|
sqlCondition.append("and f.`status`>0 and f.patient = d.`user` ");
|
|
|
sqlCondition.append(" and d.category_code in ('").append(deviceType.replace(",","','")).append("') ");
|
|
|
sqlCondition.append("and d.device_sn not in (select device_sn from ( select device_sn,MAX(record_date) record_date from device.wlyy_patient_health_index where device_sn<>'' GROUP BY device_sn)a ");
|
|
|
sqlCondition.append("where TIMESTAMPDIFF(DAY,record_date,NOW()) <= 7)");
|
|
|
sqlCondition.append("and d.device_sn not in (select DISTINCT device_sn from device.wlyy_patient_health_index where device_sn<>'' ");
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(startTime)&&org.apache.commons.lang3.StringUtils.isNoneBlank(endTime)){
|
|
|
sqlCondition.append("and record_date >='"+startTime+" 00:00:00' and record_date<='"+endTime+" 23:59:59' ");
|
|
|
}
|
|
|
sqlCondition.append(")");
|
|
|
sql.append(sqlCondition);
|
|
|
total=jdbcTemplate.queryForObject(sql.toString(),Integer.class);
|
|
|
}
|
|
|
Integer count =0;
|
|
|
if ((org.apache.commons.lang3.StringUtils.isNoneBlank(deviceType)&&deviceType.contains("5"))||org.apache.commons.lang3.StringUtils.isBlank(deviceType)){
|
|
|
String sqll = "select COUNT(*) from xmiot.iot_equipmet_detail";
|
|
|
Integer count = jdbcTemplate.queryForObject(sqll,Integer.class);
|
|
|
count = jdbcTemplate.queryForObject(sqll,Integer.class);
|
|
|
result.put("totalAll",grantCount+count);
|
|
|
count =0;
|
|
|
if("1".equals(quotaCode)){//小屋物联率
|
|
@ -1339,6 +1405,9 @@ public class MonitorPlatformService {
|
|
|
}
|
|
|
result.put("total",total+count);//互联设备\失联设备数量
|
|
|
}
|
|
|
else{
|
|
|
result.put("total",total+count);//互联设备\失联设备数量
|
|
|
}
|
|
|
DecimalFormat df = new DecimalFormat("0.00");
|
|
|
if (result.getInteger("totalAll") > 0) {
|
|
|
result.put("totalRange", df.format(result.getDouble("total") > 0.0 ? ((result.getDouble("total")) / (result.getInteger("totalAll") * 1.0000) * 100) : 0.0) );
|
|
@ -1377,7 +1446,6 @@ public class MonitorPlatformService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
public JSONObject getDeviceData(){
|
|
|
JSONObject object = new JSONObject();
|
|
|
//血糖仪数量
|
|
@ -1413,4 +1481,71 @@ public class MonitorPlatformService {
|
|
|
object.put("medicalAbnormalSignData",gg);
|
|
|
return object;
|
|
|
}
|
|
|
|
|
|
public JSONArray getSearchTags(){
|
|
|
String sql = "select id,`value` from xmiot.iot_system_dict where dict_name='DEVICE' and (value='组合一体机' or value ='单体征测量仪') and del=1;";
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql);
|
|
|
JSONArray result = new JSONArray();
|
|
|
for (Map<String,Object> map :list){
|
|
|
sql="select `code`,`value` from xmiot.iot_system_dict where dict_name='DEVICE_TYPE' and del=1 and parent_code='"+map.get("id").toString()+"'";
|
|
|
StringBuffer buffer = new StringBuffer();
|
|
|
List<Map<String,Object>> reList = jdbcTemplate.queryForList(sql);
|
|
|
for (Map<String,Object> reMap:reList){
|
|
|
JSONObject tmp = new JSONObject();
|
|
|
tmp.put("name",reMap.get("value").toString());
|
|
|
tmp.put("code",reMap.get("code").toString());
|
|
|
buffer.append(","+reMap.get("code").toString());
|
|
|
result.add(tmp);
|
|
|
}
|
|
|
if (org.apache.commons.lang3.StringUtils.isNoneBlank(buffer.toString())){
|
|
|
buffer.deleteCharAt(0);
|
|
|
JSONObject tmp = new JSONObject();
|
|
|
tmp.put("name",map.get("value").toString());
|
|
|
tmp.put("code",buffer.toString());
|
|
|
result.add(tmp);
|
|
|
}
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
public JSONObject getDeviceTotalCount(String startTime,String endTime,String deviceType,String area){
|
|
|
Integer totalAll=0;
|
|
|
Integer grant=0;
|
|
|
if (deviceType.contains("5")){
|
|
|
StringBuffer sql = new StringBuffer("select count(*) from xmiot.iot_equipmet_detail where 1=1 ");
|
|
|
if(org.apache.commons.lang3.StringUtils.isNoneBlank(area)){
|
|
|
sql.append("and belong_are_code='"+area+"' ");
|
|
|
}
|
|
|
Integer tmp = jdbcTemplate.queryForObject(sql.toString(),Integer.class);
|
|
|
totalAll +=tmp;
|
|
|
grant +=tmp;
|
|
|
}
|
|
|
String allCountSql = "SELECT COUNT(*) FROM device.wlyy_devices d ";
|
|
|
int i = 0;
|
|
|
if(org.apache.commons.lang3.StringUtils.isNoneBlank(deviceType)&&deviceType.contains("1")){
|
|
|
allCountSql+= " where device_name like '%血糖仪%' ";
|
|
|
i = 1;
|
|
|
}
|
|
|
if(org.apache.commons.lang3.StringUtils.isNoneBlank(deviceType)&&deviceType.contains("2")){
|
|
|
if(i==1){
|
|
|
allCountSql+= " or device_name like '%血压计%'";
|
|
|
}else{
|
|
|
allCountSql+= " where device_name like '%血压计%' ";
|
|
|
}
|
|
|
}
|
|
|
Integer allCount = jdbcTemplate.queryForObject(allCountSql, Integer.class);
|
|
|
totalAll+=allCount;
|
|
|
|
|
|
StringBuffer sql = new StringBuffer("SELECT COUNT(*) from wlyy.wlyy_patient_device d,wlyy.wlyy_sign_family f WHERE 1=1 and f.`status`>0 and f.patient = d.`user` ");
|
|
|
sql.append("and d.category_code in ('").append(deviceType.replace(",","','")).append("') ");
|
|
|
Integer count = jdbcTemplate.queryForObject(sql.toString(),Integer.class);
|
|
|
grant +=count;
|
|
|
|
|
|
JSONObject result = new JSONObject();
|
|
|
result.put("totalAll",totalAll);
|
|
|
result.put("using",grant);
|
|
|
result.put("stock",totalAll-grant);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
}
|