diff --git a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java index 1266103..5394ea0 100644 --- a/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java +++ b/electripper-admin/src/main/java/com/ruoyi/web/controller/app/AppVerifyController.java @@ -249,14 +249,14 @@ public class AppVerifyController extends BaseController if(ObjectUtil.isNotNull(currentOrder)){ return error("当前车辆有骑行中的订单,请换车"); } - //根据余额和充值记录判断是否有充值过押金,没有充值过押金,提示充值押金 - if(!asUserService.checkIsDeposit(order.getUserId(),area.getAreaId())){ - return error("您还未充值押金,请先充值押金"); - } logger.info("【扫码/编号开锁骑行】请求:{}", JSON.toJSON(order)); if(!etOrderService.isInOrder(order.getUserId(), order.getOrderNo()).isEmpty()){ return error("您有未完成的订单,请先完成订单"); } + //根据余额和充值记录判断是否有充值过押金,没有充值过押金,提示充值押金 + if(!asUserService.checkIsDeposit(order.getUserId(),area.getAreaId())){ + return error("您还未充值押金,请先充值押金"); + } //低电量不得骑行判断 if(asDeviceService.isLowBattery(order.getSn())){ return error("低电量不得骑行"); diff --git a/electripper-admin/src/main/resources/application-druid.yml b/electripper-admin/src/main/resources/application-druid.yml index a6bece6..31d8e47 100644 --- a/electripper-admin/src/main/resources/application-druid.yml +++ b/electripper-admin/src/main/resources/application-druid.yml @@ -6,10 +6,10 @@ spring: druid: # 主库数据源 master: - url: jdbc:mysql://47.120.68.19:3306/electripper?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -# url: jdbc:mysql://localhost:3306/ele2?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 +# url: jdbc:mysql://47.120.68.19:3306/electripper?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 + url: jdbc:mysql://localhost:3306/ele2?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 username: root - password: d0dbe100b71c1d09 + password: 123456 # url: jdbc:mysql://117.26.179.22:61110/electripper?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 # username: root # password: d0dbe100b71c1d09 diff --git a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java index 2c9d703..9b07e5e 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java +++ b/electripper-system/src/main/java/com/ruoyi/system/service/impl/AsDeviceServiceImpl.java @@ -175,9 +175,9 @@ public class AsDeviceServiceImpl extends ServiceImpl i BigDecimal lon = BigDecimal.valueOf(doubles[1]).setScale(8, RoundingMode.HALF_UP); // todo 0E-8 排除 BigDecimal lat = BigDecimal.valueOf(doubles[0]).setScale(8, RoundingMode.HALF_UP); + // long 转String device.setLongitude(lon.toString()); - device.setLatitude(lat.toString()); - device.setLastLocationTime(new Date(logEntry.getAt())); + updateDevice2(logEntry.getAt(),value,device,lon,lat); }else{ device.setLongitude(null); device.setLatitude(null); @@ -188,6 +188,7 @@ public class AsDeviceServiceImpl extends ServiceImpl i //https://dianche.chuantewulian.cn?sn=https://dche.ccttiot.com?sn=3000900 device.setQrText(sysDept.getDomain()+"?sn="+device.getSn()); device.setDeptName(sysDept.getDeptName()); + device.setDeptId(sysDept.getDeptId()); }else{ device.setQrText(""); } @@ -3027,6 +3028,37 @@ public class AsDeviceServiceImpl extends ServiceImpl i return i; } + /** 计算电量和里程后更新设备*/ + public int updateDevice2(long at,LogEntry.LocationValue locationVo, AsDevice device, BigDecimal lon, BigDecimal lat) { + device.setLatitude(lat.toString()); + device.setLongitude(lon.toString()); + BigDecimal bat = new BigDecimal(locationVo.getBat()); + if(bat.compareTo(new BigDecimal(100)) > 0){ + bat = bat.divide(new BigDecimal(10)); + } + log.info("保存电压:{}", bat); + device.setVoltage(bat.toString());//电压 + // 根据电压计算续航里程 + EtModel model = etModelService.selectEtModelByModelId(device.getModelId()); + if(ObjectUtil.isNotNull(model)){ + Integer remainingMileage = 0; + if(StrUtil.isNotBlank(device.getVoltage())){ + remainingMileage = CommonUtil.getRemainingMileage(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage(), model.getFullEndurance()); + } + Integer electricQuantity = CommonUtil.getElectricQuantity(device.getVoltage(), model.getFullVoltage(), model.getLowVoltage());//电量百分百 + device.setRemainingMileage(remainingMileage); + device.setRemainingPower(electricQuantity.toString()); + } + device.setLastTime(new Date(at)); + device.setLastLocationTime(new Date(at)); + device.setGps("1"); + // 信号强度 + device.setSignalStrength(locationVo.getCsq()); + device.setSatellites(locationVo.getS()); + device.setQuality(locationVo.getQ()); + return updateLocation(device); + } + /** 无定位更新设备 */ private void noLocationUpdateDevice(String at,LocationVo locationVo, AsDevice device) { BigDecimal bat = new BigDecimal(locationVo.getBat()); diff --git a/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java b/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java index 80f20b1..6bc3dd1 100644 --- a/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java +++ b/electripper-system/src/main/java/com/ruoyi/system/task/EtTask.java @@ -586,26 +586,34 @@ public class EtTask { */ public void updateLocation10(){ log.info("-------------------【定时任务10秒一次】更新设备的定位和电压-----开始--------------"); - // 记录开始时间 - long startTime = System.nanoTime(); Collection keys = redisCache.keys(CacheConstants.CACHE_DEVICE_KEY + "*"); -// log.info("redis缓存中的数据:" + JSON.toJSONString(keys)); + if (keys == null || keys.isEmpty()) { + log.warn("没有找到需要更新的设备缓存信息"); + return; + } for(String key:keys){ - String msg = redisCache.getCacheObject(key); -// log.info("redis缓存中的数据:{}", msg); - LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); -// log.info("logEntry转换后的对象: logEntry---【{}】" , JSON.toJSONString(logEntry)); - LogEntry.LocationValue value = logEntry.getValue(); - AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); - if(ObjectUtil.isNotNull(device) && !isRepeatMsg(msg,logEntry.getDevName())){ - if(ServiceConstants.LOCK_STATUS_OPEN.equals(device.getLockStatus())){ - updateLocationHandle(msg, logEntry, value, device); + try { + String msg = redisCache.getCacheObject(key); + if (msg == null) { + log.warn("设备缓存数据为空, key: {}", key); + continue; } + LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); + if (logEntry == null || logEntry.getValue() == null || logEntry.getDevName() == null) { + log.warn("设备日志数据解析异常, msg: {}", msg); + continue; + } + LogEntry.LocationValue value = logEntry.getValue(); + AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); + if(ObjectUtil.isNotNull(device) && !isRepeatMsg(msg,logEntry.getDevName())){ + if(ServiceConstants.LOCK_STATUS_OPEN.equals(device.getLockStatus())){ + updateLocationHandle(msg, logEntry, value, device); + } + } + } catch (Exception e) { + log.error("处理设备数据异常, key: {}, error: {}", key, e.getMessage(), e); } } - // 计算执行时间(以毫秒为单位) - long duration = (System.nanoTime() - startTime) / 1_000_000; -// log.info("-------------------【定时任务10秒一次】更新设备的定位和电压----结束---------------{} 毫秒", duration); } private boolean isRepeatMsg(String msg,String mac){ @@ -624,24 +632,32 @@ public class EtTask { */ public void updateLocation300(){ log.info("-------------------【定时任务5分钟一次】更新设备的定位和电压-----开始--------------"); - // 记录开始时间 - long startTime = System.nanoTime(); Collection keys = redisCache.keys(CacheConstants.CACHE_DEVICE_KEY + "*"); -// log.info("redis缓存中的数据:{}", JSON.toJSONString(keys)); + if (keys == null || keys.isEmpty()) { + log.warn("没有找到需要更新的设备缓存信息"); + return; + } for(String key:keys){ - String msg = redisCache.getCacheObject(key); -// log.info("redis缓存中的数据:{}", msg); - LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); -// log.info("logEntry转换后的对象: logEntry---【{}】" , JSON.toJSONString(logEntry)); - LogEntry.LocationValue value = logEntry.getValue(); - AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); - if(ObjectUtil.isNotNull(device) && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())){ - updateLocationHandle(msg, logEntry, value, device); + try { + String msg = redisCache.getCacheObject(key); + if (msg == null) { + log.warn("设备缓存数据为空, key: {}", key); + continue; + } + LogEntry logEntry = JSONObject.parseObject(msg, LogEntry.class); + if (logEntry == null || logEntry.getValue() == null || logEntry.getDevName() == null) { + log.warn("设备日志数据解析异常, msg: {}", msg); + continue; + } + LogEntry.LocationValue value = logEntry.getValue(); + AsDevice device = asDeviceMapper.selectAsDeviceByMac(logEntry.getDevName()); + if(ObjectUtil.isNotNull(device) && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())){ + updateLocationHandle(msg, logEntry, value, device); + } + } catch (Exception e) { + log.error("处理设备数据异常, key: {}, error: {}", key, e.getMessage(), e); } } - // 计算执行时间(以毫秒为单位) - long duration = (System.nanoTime() - startTime) / 1_000_000; -// log.info("-------------------【定时任务5分钟一次】更新设备的定位和电压----结束---------------{} 毫秒", duration); } private void updateLocationHandle(String msg, LogEntry logEntry, LogEntry.LocationValue value, AsDevice device) {