|
@ -17,6 +17,9 @@ import com.yihu.jw.entity.base.user.UserDO;
|
|
|
|
|
|
import com.yihu.jw.entity.equipment.WlyyUserAreaDO;
|
|
|
import com.yihu.jw.entity.hospital.consult.WlyyHospitalSysDictDO;
|
|
|
import com.yihu.jw.entity.iot.company.IotCompanyAppDO;
|
|
|
import com.yihu.jw.entity.iot.platform.IotInterfaceLogDO;
|
|
|
import com.yihu.jw.entity.iot.platform.IotShareInterfaceDO;
|
|
|
import com.yihu.jw.restmodel.web.PageEnvelop;
|
|
|
import com.yihu.jw.sms.dao.HospitalSysDictDao;
|
|
|
import com.yihu.jw.util.common.LatitudeUtils;
|
|
@ -32,6 +35,7 @@ import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import java.io.IOException;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.text.DecimalFormat;
|
|
@ -49,7 +53,8 @@ public class MedicinedeviceService extends BaseJpaService<Mediicinedevice, Medi
|
|
|
|
|
|
@Autowired
|
|
|
private MediicineDeviceDao deviceDao;
|
|
|
|
|
|
@Autowired
|
|
|
private MedicineShipmentLogDao shipmentLogDao;
|
|
|
@Autowired
|
|
|
private MediicineDeviceUserDao deviceUserDao;
|
|
|
|
|
@ -103,7 +108,268 @@ public class MedicinedeviceService extends BaseJpaService<Mediicinedevice, Medi
|
|
|
private HospitalSysDictDao hospitalSysDictDao;
|
|
|
@Autowired
|
|
|
private MedicineOrderService medicineOrderService;
|
|
|
@Autowired
|
|
|
private MedicinePatientLogDao medicinePatientLogDao;
|
|
|
|
|
|
/**
|
|
|
* 保存接口调用日志
|
|
|
* @param paramsMap 入参
|
|
|
* @param response 出参
|
|
|
* @param url
|
|
|
* @param state 调用状态
|
|
|
*/
|
|
|
public void saveLog(Map<String,String> paramsMap,String response, String url, Integer state, String methodType, String methodName,Long reqTime){
|
|
|
try {
|
|
|
JSONObject resJson = JSONObject.parseObject(response);
|
|
|
if(url.contains("updateOrderOutStatus")){
|
|
|
if("success".equals(resJson.getString("message"))){
|
|
|
return;
|
|
|
}
|
|
|
}else if(resJson.containsKey("status")&&resJson.getInteger("status")==200){
|
|
|
return;
|
|
|
}
|
|
|
String msg = resJson.containsKey("msg")?resJson.getString("msg"):resJson.getString("message");
|
|
|
|
|
|
MedicinePatientLog log = new MedicinePatientLog();
|
|
|
log.setMethodUrl(url);
|
|
|
log.setReq(JSONObject.toJSONString(paramsMap));
|
|
|
if(!StringUtils.isEmpty(response)){
|
|
|
if (response.length() > 20000) {
|
|
|
response = response.substring(0, 20000);
|
|
|
}
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(msg)){
|
|
|
if (msg.length() > 20000) {
|
|
|
msg = msg.substring(0, 20000);
|
|
|
}
|
|
|
}
|
|
|
String cardNo = null;
|
|
|
String idcard = null;
|
|
|
String equNum = null;
|
|
|
String orgCode = null;
|
|
|
String name = null;
|
|
|
if(paramsMap.containsKey("cardNo")){
|
|
|
cardNo = paramsMap.get("cardNo");
|
|
|
}
|
|
|
if(paramsMap.containsKey("cardNum")){
|
|
|
cardNo = paramsMap.get("cardNum");
|
|
|
}
|
|
|
if(paramsMap.containsKey("ssc")){
|
|
|
cardNo = paramsMap.get("ssc");
|
|
|
}
|
|
|
if(paramsMap.containsKey("idcard")){
|
|
|
idcard = paramsMap.get("idcard");
|
|
|
}
|
|
|
if(paramsMap.containsKey("equ_num")){
|
|
|
equNum = paramsMap.get("equ_num");
|
|
|
}
|
|
|
if(paramsMap.containsKey("orgCode")){
|
|
|
orgCode = paramsMap.get("orgCode");
|
|
|
}
|
|
|
if(paramsMap.containsKey("patientName")){
|
|
|
name = paramsMap.get("patientName");
|
|
|
}
|
|
|
if(paramsMap.containsKey("userName")){
|
|
|
name = paramsMap.get("userName");
|
|
|
}
|
|
|
String deviceId = paramsMap.get("deviceId");
|
|
|
if(!StringUtils.isEmpty(deviceId)){
|
|
|
Mediicinedevice mediicinedevice = deviceDao.findMediicinedeviceByEquNum(deviceId);
|
|
|
if(mediicinedevice!=null){
|
|
|
equNum = mediicinedevice.getEquNum();
|
|
|
orgCode = mediicinedevice.getBelongCommunity();
|
|
|
}
|
|
|
}
|
|
|
String shipmentLogId = paramsMap.get("shipmentLogId");
|
|
|
if(!StringUtils.isEmpty(shipmentLogId)){
|
|
|
MedicineShipmentLog medicineShipmentLog = shipmentLogDao.findOne(shipmentLogId);
|
|
|
equNum = medicineShipmentLog.getEquNum();
|
|
|
orgCode = medicineShipmentLog.getOrgCode();
|
|
|
}
|
|
|
|
|
|
log.setCardNo(cardNo);
|
|
|
log.setIdcard(idcard);
|
|
|
log.setEquNum(equNum);
|
|
|
log.setOrgCode(orgCode);
|
|
|
log.setName(name);
|
|
|
log.setError(msg);
|
|
|
log.setRes(response);
|
|
|
log.setStatus(state);
|
|
|
log.setMethodType(methodType);
|
|
|
log.setMethodName(methodName);
|
|
|
log.setReqTime(reqTime);
|
|
|
log.setCreateTime(DateUtil.getNowDate());
|
|
|
medicinePatientLogDao.save(log);
|
|
|
}catch (Exception e){
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
//居民请求运行日志
|
|
|
public PageEnvelop patientReqLogPage(Integer page,Integer size,String name,String orgCode,String methodType,String startTime,String endTime){
|
|
|
String sql = "SELECT l.equ_num equNum,l.org_code orgCode,if(d1.id is null,d2.community,d1.community) orgName " +
|
|
|
",l.method_name methodName,l.method_type methodType,l.card_no cardNo,l.idcard,l.`name`,l.error,l.req_time reqTime " +
|
|
|
",DATE_FORMAT(l.create_time,'%Y-%m-%d %H:%i:%S') createTime ";
|
|
|
String countSql = "select count(l.id) ";
|
|
|
String filter = " from t_medicine_patient_log l " +
|
|
|
" LEFT JOIN t_mediicine_device d1 on d1.equ_num=l.equ_num " +
|
|
|
" LEFT JOIN t_mediicine_device d2 on d2.belong_community=l.org_code" +
|
|
|
" where 1=1";
|
|
|
if(!StringUtils.isEmpty(name)){
|
|
|
filter += " and (l.equ_num like '%"+name+"%' or d1.community like '%"+name+"%'or d2.community like '%"+name+"%')";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(orgCode)){
|
|
|
filter += " l.org_code='"+orgCode+"' ";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(methodType)){
|
|
|
filter += " l.method_type='"+methodType+"' ";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(startTime)){
|
|
|
filter += " l.create_time>='"+startTime+"' ";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(endTime)){
|
|
|
filter += " l.create_time<='"+endTime+" 23:59:59' ";
|
|
|
}
|
|
|
|
|
|
String orderBy = " order by l.id desc limit "+(page-1)*size+","+size;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql+filter+orderBy);
|
|
|
long count = jdbcTemplate.queryForObject(countSql+filter,Long.class);
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
//货道信息列表
|
|
|
public PageEnvelop cabinetInventoryPage(Integer page,Integer size,String idDevice,String startTime,String endTime){
|
|
|
String sql = "select id,id_device idDevice,state,num,layer_no layerNo,wayer_no wayerNo,qty,drug_name drugName" +
|
|
|
",cargo_capacity cargoCapacity,shelf_status shelfStatus,cargo_state cargoState,fault_state faultState" +
|
|
|
",if(fault_state='1','故障',if(fault_state='0','正常','')) faultStateNam,if(cargo_state='1','开启',if(cargo_state='0','关闭','')) cargoStateName" +
|
|
|
",if(shelf_status='1','上架',if(shelf_status='0','下架','')) shelfStatusName";
|
|
|
String countSql = "select count(id) ";
|
|
|
String filter = " from t_mediicinecabinet_inventory where id_device='"+idDevice+"' ";
|
|
|
if(!StringUtils.isEmpty(startTime)){
|
|
|
filter += " and update_time>='"+startTime+"'";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(endTime)){
|
|
|
filter += " and end_time>='"+endTime+"'";
|
|
|
}
|
|
|
|
|
|
String orderBy = " order by fault_state desc,update_time desc limit "+(page-1)*size+","+size;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql+filter+orderBy);
|
|
|
long count = jdbcTemplate.queryForObject(countSql+filter,Long.class);
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
//设备货道信息列表
|
|
|
public PageEnvelop deviceCabinetInventoryPage(Integer page,Integer size,String name,String orgCode,String networkStatus){
|
|
|
String sql = " SELECT a.*,CONCAT(FORMAT(((a.normalCargoNumber-a.usedCargoNumber) / a.normalCargoNumber) * 100, 2),'%') kongzhilv " +
|
|
|
",(a.normalCargoNumber - a.alreadySetDrugNumber) noSetDrugCargoNumber " +
|
|
|
",(a.normalOpenCargoCapacity - a.usedCargoCapacity) noUsedCargoCapacity " ;
|
|
|
String countSql = "select count(a.id)";
|
|
|
String filter = " from ( " +
|
|
|
"SELECT DISTINCT t.id,t.community,t.equ_num equNum,t.network_status,t.sale_status saleStatus,t.status " +
|
|
|
",if(t.status='1','不缺货',if(t.status='0','缺货','')) statusName " +
|
|
|
",if(t.network_status='1','在线',if(t.network_status='0','离线','')) networkStatusName " +
|
|
|
",if(t.sale_status='1','在售',if(t.sale_status='2','停售',if(t.sale_status='3','故障',''))) saleStatusName " +
|
|
|
",t.layer,t.aisles,SUM(if(i.cargo_state='1' and i.fault_state='0',i.cargo_capacity,0)) normalOpenCargoCapacity " +
|
|
|
",SUM(if(i.cargo_state='1' and i.fault_state='0',i.qty,0)) usedCargoCapacity " +
|
|
|
",sum(if(i.shelf_status = '1',i.qty,0)) inStock " +
|
|
|
",COUNT(if(i.cargo_state='1' and i.fault_state='0',i.id,null)) normalCargoNumber " +
|
|
|
",COUNT(if(i.cargo_state='1' and i.fault_state='0' and i.org_code is not null and i.drug_code is not null,i.id,null)) alreadySetDrugNumber " +
|
|
|
",COUNT(if(i.cargo_state='1' and i.fault_state='0' and i.org_code is not null and i.drug_code is not null and i.qty>0,i.id,null)) usedCargoNumber " +
|
|
|
",COUNT(if(i.cargo_state='1',i.id,null)) openCount,COUNT(if(i.cargo_state!='1',i.id,null)) closeCount " +
|
|
|
",COUNT(if(i.fault_state='1',i.id,null)) faultCount " +
|
|
|
",COUNT(if(i.fault_state='1' and i.update_time>'2025-01-01' ,i.id,null)) addFaultCount " +
|
|
|
",DATE_FORMAT(t.log_time,'%Y-%m-%d %H:%i:%S') logTime " +
|
|
|
" from t_mediicine_device t " +
|
|
|
"LEFT JOIN t_mediicinecabinet_inventory i on i.id_device = t.id and (i.state = '1' OR i.state = '21') " +
|
|
|
"WHERE t.del=1 and t.belong_community is not null ";
|
|
|
if(!StringUtils.isEmpty(name)){
|
|
|
filter += " and (t.equ_name like '%"+name+"%' or t.equ_num like '%"+name+"%')";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(orgCode)){
|
|
|
filter += " and t.belong_community='"+orgCode+"'";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(networkStatus)){
|
|
|
filter += " and t.network_status='"+networkStatus+"'";
|
|
|
}
|
|
|
filter += "GROUP BY t.id ) a ";
|
|
|
|
|
|
String orderBy = " limit "+(page-1)*size+","+size;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql+filter+orderBy);
|
|
|
long count = jdbcTemplate.queryForObject(countSql+filter,Long.class);
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
|
|
|
//温湿度信息列表
|
|
|
public PageEnvelop temperatureHumidityInfoPage(Integer page,Integer size,String name,String orgCode,String temperatureStatus,String humidityStatus){
|
|
|
String sql = "SELECT t.id,t.community,t.equ_name equName,t.equ_num equNum,t.delivery_address deliveryAddress " +
|
|
|
",t.now_temperature nowTemperature,t.now_humidity nowHumidity,t.abnormal,DATE_FORMAT(t.log_time,'%Y-%m-%d %H:%i:%S') logTime ";
|
|
|
String countSql = "select count(t.id)";
|
|
|
String filter = " from t_mediicine_device t " +
|
|
|
" WHERE t.del=1 and t.belong_community is not null ";
|
|
|
if(!StringUtils.isEmpty(name)){
|
|
|
filter += " and (t.equ_name like '%"+name+"%' or t.equ_num like '%"+name+"%')";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(orgCode)){
|
|
|
filter += " and t.belong_community='"+orgCode+"'";
|
|
|
}
|
|
|
if("1".equals(temperatureStatus)){
|
|
|
//正常
|
|
|
filter += " and (t.temperaturecontrol!='1' or t.now_temperature is null or " +
|
|
|
" ( t.now_temperature <= t.waring_temperature_height and t.now_temperature >= t.waring_temperature_low))";
|
|
|
}
|
|
|
if("2".equals(temperatureStatus)){
|
|
|
//异常
|
|
|
filter += " and t.temperaturecontrol='1' and (t.now_temperature>t.waring_temperature_height or t.now_temperature<t.waring_temperature_low)";
|
|
|
}
|
|
|
if("1".equals(humidityStatus)){
|
|
|
//正常
|
|
|
filter += " and (t.humiditycontrol!='1' or t.now_humidity is null or " +
|
|
|
" ( t.now_humidity <= t.waring_humidity_height and t.now_humidity >= t.waring_humidity_low))";
|
|
|
}
|
|
|
if("2".equals(humidityStatus)){
|
|
|
//异常
|
|
|
filter += " and t.humiditycontrol='1' and (t.now_humidity>t.waring_humidity_height or t.now_humidity<t.waring_humidity_low)";
|
|
|
}
|
|
|
String orderBy = " limit "+(page-1)*size+","+size;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql+filter+orderBy);
|
|
|
long count = jdbcTemplate.queryForObject(countSql+filter,Long.class);
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
//温湿度日志列表
|
|
|
public PageEnvelop temperatureHumidityWarrayPage(Integer page,Integer size,String startTime,String endTime,String temperatureEnd
|
|
|
,String temperatureStart,String humidityStart,String humidityEnd,String equNum){
|
|
|
String sql = "SELECT t.temperature,t.humidity,DATE_FORMAT(t.create_time,'%Y-%m-%d %H:%i:%S') createTime,t.type ";
|
|
|
String countSql = "select count(t.id)";
|
|
|
String filter = " from t_mediicine_warray t " +
|
|
|
"WHERE t.other_couont is NULL and t.equ_num='"+equNum+"' ";
|
|
|
|
|
|
if(!StringUtils.isEmpty(startTime)){
|
|
|
filter += " and t.create_time>='"+startTime+"'";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(endTime)){
|
|
|
endTime = endTime.length()==10?endTime+" 23:59:59":endTime;
|
|
|
filter += " and t.create_time<='"+endTime+"'";
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(temperatureEnd)){
|
|
|
filter += " and t.temperature<="+temperatureEnd;
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(temperatureStart)){
|
|
|
filter += " and t.temperature>="+temperatureStart;
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(humidityStart)){
|
|
|
filter += " and t.humidity>="+humidityStart;
|
|
|
}
|
|
|
if(!StringUtils.isEmpty(humidityEnd)){
|
|
|
filter += " and t.humidity>="+humidityEnd;
|
|
|
}
|
|
|
|
|
|
String orderBy = " limit "+(page-1)*size+","+size;
|
|
|
List<Map<String,Object>> list = jdbcTemplate.queryForList(sql+filter+orderBy);
|
|
|
long count = jdbcTemplate.queryForObject(countSql+filter,Long.class);
|
|
|
return PageEnvelop.getSuccessListWithPage("查询成功",list,page,size,count);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|