1. 优化bug等等

2. 暂时关闭分账
3. 靠近运营区边界播报
4. 日志优化
5. 单元测试
This commit is contained in:
邱贞招 2024-08-14 10:54:13 +08:00
parent aa7821bfa9
commit 37f9e8eae1
25 changed files with 586 additions and 247 deletions

View File

@ -61,6 +61,25 @@
<artifactId>electripper-generator</artifactId> <artifactId>electripper-generator</artifactId>
</dependency> </dependency>
<!--测试类-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<!--测试类-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<!--测试类-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>

View File

@ -19,6 +19,7 @@ import com.ruoyi.common.utils.CommonUtil;
import com.ruoyi.common.utils.SendAliSmsUtil; import com.ruoyi.common.utils.SendAliSmsUtil;
import com.ruoyi.common.utils.SendSmsVo; import com.ruoyi.common.utils.SendSmsVo;
import com.ruoyi.common.utils.map.GeoUtils; import com.ruoyi.common.utils.map.GeoUtils;
import com.ruoyi.common.utils.map.GpsCoordinateUtils;
import com.ruoyi.common.utils.onenet.Token; import com.ruoyi.common.utils.onenet.Token;
import com.ruoyi.framework.web.service.SysLoginService; import com.ruoyi.framework.web.service.SysLoginService;
import com.ruoyi.system.domain.*; import com.ruoyi.system.domain.*;
@ -33,6 +34,8 @@ import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.io.UnsupportedEncodingException; import java.io.UnsupportedEncodingException;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.security.InvalidKeyException; import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException; import java.security.NoSuchAlgorithmException;
import java.util.List; import java.util.List;
@ -610,4 +613,60 @@ public class AppController extends BaseController
return toAjax(etOrderService.repairDeduction(areaId)); return toAjax(etOrderService.repairDeduction(areaId));
} }
/**
* 定位转换
*/
@GetMapping(value = "/position/conversion")
public AjaxResult repairDeduction(BigDecimal lon,BigDecimal lat)
{
logger.info("WGS84经纬度未计算" + lon + "---" + lat);
// 除以100
lon = lon.divide(new BigDecimal(100), 10, RoundingMode.HALF_UP);
lat = lat.divide(new BigDecimal(100), 10, RoundingMode.HALF_UP);
logger.info("WGS84经纬度除以100后" + lon + "---" + lat);
// 取出lon中后面的小数点
String[] lonStr = getDecimalPart(lon);
String[] latStr = getDecimalPart(lat);
logger.info("WGS84经纬度截取小数点" + lonStr[0] + "---" + lonStr[1] + "---"+ latStr[0]+"---"+ latStr[1]);
// 再将结果乘以5/3
String lon2 = "0."+ lonStr[1];
String lat2 = "0."+ latStr[1];
BigDecimal lons = new BigDecimal(lon2).multiply(new BigDecimal(5).divide(new BigDecimal(3), 8, RoundingMode.HALF_UP));
BigDecimal lats = new BigDecimal(lat2).multiply(new BigDecimal(5).divide(new BigDecimal(3), 8, RoundingMode.HALF_UP));
BigDecimal lo = new BigDecimal(lonStr[0]).add(lons);
BigDecimal la = new BigDecimal(latStr[0]).add(lats);
logger.info("WGS84经纬度计算后" + lo + "---" + la);
lo = lo.setScale(8, RoundingMode.HALF_UP);
la = la.setScale(8, RoundingMode.HALF_UP);
logger.info("WGS84经纬度保留8为小数" + lo + "---" + la);
double[] doubles = GpsCoordinateUtils.calWGS84toGCJ02(la.doubleValue(), lo.doubleValue());
lat = new BigDecimal(doubles[0]).setScale(8, RoundingMode.HALF_UP);
lon = new BigDecimal(doubles[1]).setScale(8, RoundingMode.HALF_UP);
logger.info("转换后的GCJ02经纬度" + lon + "---" + lat);
return success(lon+","+lat);
}
private static String[] getDecimalPart(BigDecimal number) {
// 将BigDecimal转换为字符串
String numberStr = number.toPlainString();
// 找到小数点的位置
int indexOfDecimal = numberStr.indexOf(".");
// 初始化结果数组
String[] parts = new String[2];
// 如果有小数点
if (indexOfDecimal >= 0) {
parts[0] = numberStr.substring(0, indexOfDecimal); // 整数部分
parts[1] = numberStr.substring(indexOfDecimal + 1); // 小数部分
} else {
// 如果没有小数点整数部分为整个字符串小数部分为空
parts[0] = numberStr;
parts[1] = "";
}
return parts;
}
} }

View File

@ -901,7 +901,8 @@ public class AppVerifyController extends BaseController
BigDecimal todayOrderAmount = getTodayOrderAmount(sysDept); BigDecimal todayOrderAmount = getTodayOrderAmount(sysDept);
// 更新 sysDept 的余额字段 // 更新 sysDept 的余额字段
if (sysDept.getBalance() != null) { if (sysDept.getBalance() != null) {
sysDept.setBalance(sysDept.getBalance().subtract(todayOrderAmount)); sysDept.setSettlementAmount(todayOrderAmount);
sysDept.setWithdrawableAmount(sysDept.getBalance().subtract(todayOrderAmount));
} }
return success(sysDept); return success(sysDept);
} }
@ -927,6 +928,9 @@ public class AppVerifyController extends BaseController
todayOrderAmount = todayOrderAmount.add(areaOrderAmount); todayOrderAmount = todayOrderAmount.add(areaOrderAmount);
} }
} }
if(todayOrderAmount.compareTo(sysDept.getBalance()) > 0){
todayOrderAmount = sysDept.getBalance();
}
return todayOrderAmount; return todayOrderAmount;
} }

View File

@ -37,6 +37,7 @@ import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException; import java.security.NoSuchAlgorithmException;
import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;
/** /**
* 接收硬件参数 * 接收硬件参数
@ -71,6 +72,9 @@ public class ReceiveController {
@Autowired @Autowired
private IEtOrderService etOrderService; private IEtOrderService etOrderService;
@Autowired
private ISysConfigService sysConfigService;
@Autowired @Autowired
private ScheduledExecutorService scheduledExecutorService; private ScheduledExecutorService scheduledExecutorService;
@ -79,6 +83,10 @@ public class ReceiveController {
private final Object lock = new Object(); private final Object lock = new Object();
// 用于记录上次发送命令的时间
private static AtomicLong lastCommandTime = new AtomicLong(0);
private static final long COMMAND_COOLDOWN_MS = 5 * 60 * 1000; // 5分钟
/** /**
* 功能描述第三方平台数据接收<p> * 功能描述第三方平台数据接收<p>
@ -232,25 +240,50 @@ public class ReceiveController {
} }
}else{ }else{
//是否在禁行区20米范围内 //是否在禁行区20米范围内
boolean inPolygon = asDeviceService.isNoRidingAreaWithTolerance(device.getSn(), device.getAreaId(),20); boolean inPolygon = asDeviceService.isNoRidingAreaWithTolerance(device.getSn(), device.getAreaId(),30);
if (inPolygon && !isAdminUnlocking.equals("1")) { if (inPolygon && !isAdminUnlocking.equals("1")) {
log.info("距离禁行区20米内发送警告命令--SN" + device.getSn()); log.info("距离禁行区20米内发送警告命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "距离禁行区20米内",null,null); asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "距离禁行区30米内",null,null);
} }
} }
/** 3.超出运营区外断电*/ /** 3. 判断是否在运营区外
boolean isAreaZone = asDeviceService.isAreaZone(device.getSn(), area); * a. 判断是否在缩短后的运营区边界内
if(!isAreaZone){ * 如果在 返回营运区上电 逻辑
//是否在30米范围内 * 如果不在
boolean inPolygon = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), GeoUtils.fromWkt(area.getBoundary()), 60); * 判断是否靠近运营区边界
if(inPolygon && !isAdminUnlocking.equals("1")){ * 靠近播报
* 不靠近判断是否在运营区外
*
**/
String nearBoundaryDistanceConfig = sysConfigService.selectConfigByKey("near.boundary.distance");// 靠近运营区边界时的播报距离
log.info("靠近运营区边界时的播报距离==================" + nearBoundaryDistanceConfig);
double nearBoundaryDistance = Double.parseDouble(nearBoundaryDistanceConfig);
String exceedArea = sysConfigService.selectConfigByKey("exceed.area.distance");// 超出运营区外断电距离
log.info("超出运营区外断电距离================" + exceedArea);
int exceedDistance = Integer.parseInt(exceedArea);
// 创建多边形对象
Geometry polygon = GeoUtils.fromWkt(area.getBoundary());
// 判断该车辆是否在进行中的订单,并且车辆的锁状态是关状态是骑行中
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
// 是否在缩短后的运营区边界内
boolean inPolygonWithTolerance = GeoUtils.isInPolygonWithShorten(lon.toString(), lat.toString(), polygon, nearBoundaryDistance);
if(!inPolygonWithTolerance && !isAdminUnlocking.equals("1") && inOrderBySn){//如果正在骑行中并且不是管理员开锁并且在不缩短后的运营区域内 没有在缩短后的运营区边界内
boolean inPolygonWithTolerance1 = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), polygon, 0);// 是否在运营区内
boolean isNearBoundary = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), polygon, exceedDistance );
if(inPolygonWithTolerance1){//是否在运营区边界内
// 在靠近运营区边界时发警报
log.info("靠近运营区边界发警告命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "靠近运营区边界", null, null);
}else if(isNearBoundary){ // 是否在超出运营区边界多少米内
//在20米范围内发报警 //在20米范围内发报警
log.info("超出运营区30米内发送警告命令--SN" + device.getSn()); log.info("超出运营区"+exceedDistance+"米内发送警告命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区30米内",null,null); asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区"+exceedDistance+"米内",null,null);
}else{ }else{
//超出运营区外断电 // 超出运营区外断电
String areaOutOutage = area.getAreaOutOutage(); String areaOutOutage = area.getAreaOutOutage();
if (areaOutOutage.equals("1") && value.getStatus() != 3 && !isAdminUnlocking.equals("1")) { // 超出营运区断电 if (areaOutOutage.equals("1")) { // 超出营运区断电
log.info("超出营运区断电命令--SN" + device.getSn()); log.info("超出营运区断电命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "超出营运区断电",null,null); asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "超出营运区断电",null,null);
device.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE); device.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
@ -261,8 +294,7 @@ public class ReceiveController {
} }
} }
}else{ }else{
// 判断该车辆是否在进行中的订单,并且车辆的锁状态是关状态是骑行中 // 在运营区域内
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
if (inOrderBySn && ServiceConstants.VEHICLE_STATUS_IN_USING.equals(device.getStatus()) && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) { // 有正在骑行的订单给车辆上电 if (inOrderBySn && ServiceConstants.VEHICLE_STATUS_IN_USING.equals(device.getStatus()) && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) { // 有正在骑行的订单给车辆上电
if(!noRidingArea){ if(!noRidingArea){
log.info("返回营运区上电,有正在骑行的订单,给车辆上电--SN" + device.getSn()); log.info("返回营运区上电,有正在骑行的订单,给车辆上电--SN" + device.getSn());
@ -301,10 +333,14 @@ public class ReceiveController {
optimizeRoute(jsonArray, newPoint,lon,lat,etOrder); optimizeRoute(jsonArray, newPoint,lon,lat,etOrder);
}else{ }else{
long currentTime = System.currentTimeMillis();
long lastTime = lastCommandTime.get();// 上一次命令时间5分账内不再执行 车辆锁同步关锁 命令
long difference = System.currentTimeMillis() - logEntry.getAt(); long difference = System.currentTimeMillis() - logEntry.getAt();
log.info("当前时间戳:【"+System.currentTimeMillis()+"】,消息时间:【"+logEntry.getAt()+"】,时间差:【"+difference+""); log.info("当前时间戳:【"+System.currentTimeMillis()+"】,消息时间:【"+logEntry.getAt()+"】,时间差:【"+difference+"");
if (difference < 60 * 1000 && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) { if (difference < 60 * 1000 && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) {// 消息时间和当前时间时间差在1分钟内且锁状态为关闭则发送命令
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "车辆锁同步关锁", null, null, msg); if (currentTime - lastTime >= COMMAND_COOLDOWN_MS) {
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "车辆锁同步关锁", null, null, msg);
}
} }
} }
} }
@ -437,7 +473,7 @@ public class ReceiveController {
} else { } else {
jsonArray.add(newPoint); jsonArray.add(newPoint);
String tripRouteStr = jsonArray.toJSONString(); String tripRouteStr = jsonArray.toJSONString();
log.info("更新行程jsonArray" + tripRouteStr); // log.info("更新行程jsonArray" + tripRouteStr);
etOrder.setTripRouteStr(tripRouteStr); etOrder.setTripRouteStr(tripRouteStr);
Geometry geometry = GeoUtils.toGeometryByLinearRing(tripRouteStr); Geometry geometry = GeoUtils.toGeometryByLinearRing(tripRouteStr);

View File

@ -122,7 +122,7 @@ public class AsDeviceController extends BaseController
} }
/** /**
* 一键下线 * 一键禁用
*/ */
@PreAuthorize("@ss.hasPermi('system:device:oneClickOffline')") @PreAuthorize("@ss.hasPermi('system:device:oneClickOffline')")
@Log(title = "设备", businessType = BusinessType.OFFLINE) @Log(title = "设备", businessType = BusinessType.OFFLINE)

View File

@ -107,9 +107,13 @@ public class SysDeptController extends BaseController
SysDept sysDept = deptService.selectDeptById(deptId); SysDept sysDept = deptService.selectDeptById(deptId);
BigDecimal todayOrderAmount = getTodayOrderAmount(deptId); BigDecimal todayOrderAmount = getTodayOrderAmount(deptId);
if(todayOrderAmount.compareTo(sysDept.getBalance()) > 0){
todayOrderAmount = sysDept.getBalance();
}
// 更新 sysDept 的余额字段 // 更新 sysDept 的余额字段
if (sysDept.getBalance() != null) { if (sysDept.getBalance() != null) {
sysDept.setBalance(sysDept.getBalance().subtract(todayOrderAmount)); sysDept.setSettlementAmount(todayOrderAmount);
sysDept.setWithdrawableAmount(sysDept.getBalance().subtract(todayOrderAmount));
} }
ajax.put(AjaxResult.DATA_TAG,sysDept); ajax.put(AjaxResult.DATA_TAG,sysDept);

View File

@ -126,10 +126,10 @@ public class SysLoginController
Long userId = SecurityUtils.getUserId(); Long userId = SecurityUtils.getUserId();
List<SysMenu> menus = menuService.selectMenuTreeByUserId(userId); List<SysMenu> menus = menuService.selectMenuTreeByUserId(userId);
SysDept sysDept = deptService.selectDeptById(SecurityUtils.getDeptId()); SysDept sysDept = deptService.selectDeptById(SecurityUtils.getDeptId());
if(!sysDept.getIsProfitSharing().equals("true")){ // if(!sysDept.getIsProfitSharing().equals("true")){
// 去掉 menus 中的名字为合伙人管理的菜单 // // 去掉 menus 中的名字为合伙人管理的菜单
menus.removeIf(menu -> menu.getMenuName().equals("合伙人管理")); // menus.removeIf(menu -> menu.getMenuName().equals("合伙人管理"));
} // }
if(sysDept.getDeptId() == 101){ if(sysDept.getDeptId() == 101){
// 找出 menus 中的名字为财务管理的菜单获取到它子菜单 // 找出 menus 中的名字为财务管理的菜单获取到它子菜单
menus.stream().filter(menu -> menu.getMenuName().equals("财务管理")).forEach(menu -> { menus.stream().filter(menu -> menu.getMenuName().equals("财务管理")).forEach(menu -> {

View File

@ -0,0 +1,97 @@
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.RuoYiApplication;
import com.ruoyi.common.constant.IotConstants;
import com.ruoyi.common.constant.ServiceConstants;
import com.ruoyi.common.utils.map.GeoUtils;
import com.ruoyi.common.utils.onenet.Token;
import com.ruoyi.system.domain.AsDevice;
import com.ruoyi.system.domain.EtOperatingArea;
import com.ruoyi.system.service.IAsDeviceService;
import com.ruoyi.system.service.IEtOperatingAreaService;
import com.ruoyi.system.service.ISysConfigService;
import com.ruoyi.web.controller.iot.domain.LogEntry;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.operation.buffer.BufferOp;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import javax.annotation.Resource;
import java.math.BigDecimal;
@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest(classes = RuoYiApplication.class,webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class MainTests {
@Resource
private IAsDeviceService asDeviceService;
@Autowired
private ISysConfigService sysConfigService;
@Resource
private IEtOperatingAreaService etOperatingAreaService;
@Test
@SneakyThrows
public void testSelectActivityById() {
AsDevice device = asDeviceService.selectAsDeviceByMac("75D30EA71454");
BigDecimal lon = new BigDecimal("120.25709");
BigDecimal lat = new BigDecimal("27.105487");
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(device.getAreaId());
String isAdminUnlocking = device.getIsAdminUnlocking();// 是否是管理员开锁0-1-
String nearBoundaryDistanceConfig = sysConfigService.selectConfigByKey("near.boundary.distance");// 靠近运营区边界时的播报距离
log.info("靠近运营区边界时的播报距离==================" + nearBoundaryDistanceConfig);
double nearBoundaryDistance = Double.parseDouble(nearBoundaryDistanceConfig);
String exceedArea = sysConfigService.selectConfigByKey("exceed.area.distance");// 超出运营区外断电距离
log.info("超出运营区外断电距离================" + exceedArea);
int exceedDistance = Integer.parseInt(exceedArea);
// 创建多边形对象
Geometry polygon = GeoUtils.fromWkt(area.getBoundary());
// 是否在缩短后的运营区边界内
boolean inPolygonWithTolerance = GeoUtils.isInPolygonWithShorten(lon.toString(), lat.toString(), polygon, nearBoundaryDistance);
if(!inPolygonWithTolerance && !isAdminUnlocking.equals("1")){//没有在缩短后的运营区边界内
boolean inPolygonWithTolerance1 = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), polygon, 0);// 是否在运营区内
boolean isNearBoundary = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), polygon, exceedDistance );
if(inPolygonWithTolerance1){//是否在运营区边界内
// 在靠近运营区边界时发警报
log.info("靠近运营区边界发警告命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY2, "靠近运营区边界", null, null);
}else if(isNearBoundary){ // 是否在超出运营区边界多少米内
//在20米范围内发报警
log.info("超出运营区"+exceedDistance+"米内发送警告命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区"+exceedDistance+"米内",null,null);
}else{
// 超出运营区外断电
String areaOutOutage = area.getAreaOutOutage();
if (areaOutOutage.equals("1")) { // 超出营运区断电
log.info("超出营运区断电命令--SN" + device.getSn());
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_QLOSE+IotConstants.COMMAND_FREQUENCY_5, "超出营运区断电",null,null);
device.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
int updateAsDevice = asDeviceService.updateAsDevice(device);
if (updateAsDevice > 0) {
log.info("禁行区内断电--更新设备锁状态成功SN" + device.getSn());
}
}
}
}else{
log.info("在运营区域内");
}
}
}

View File

@ -124,6 +124,28 @@ public class SysDept extends BaseEntity
/** 收款码 */ /** 收款码 */
public String collectionCode; public String collectionCode;
/** 待结算金额 */
public BigDecimal settlementAmount;
/** 可提现金额 */
public BigDecimal withdrawableAmount;
public BigDecimal getWithdrawableAmount() {
return withdrawableAmount;
}
public void setWithdrawableAmount(BigDecimal withdrawableAmount) {
this.withdrawableAmount = withdrawableAmount;
}
public BigDecimal getSettlementAmount() {
return settlementAmount;
}
public void setSettlementAmount(BigDecimal settlementAmount) {
this.settlementAmount = settlementAmount;
}
public String getCollectionCode() { public String getCollectionCode() {
return collectionCode; return collectionCode;
} }

View File

@ -250,6 +250,7 @@ public class GeoUtils {
double distance = calculateDistance(lat, lon, coord.y, coord.x); double distance = calculateDistance(lat, lon, coord.y, coord.x);
log.info("距离----distance:{}",distance); log.info("距离----distance:{}",distance);
if (distance <= tolerance) { if (distance <= tolerance) {
log.info("最小距离----distance:{}",distance);
return true; return true;
} }
} }
@ -257,6 +258,34 @@ public class GeoUtils {
} }
} }
/**
* 判断一个点是否在一个缩短后的圆形区域内
* */
public static boolean isInPolygonWithShorten(String longitude, String latitude, Geometry polygon, double shortenDistance) {
double lon = Double.parseDouble(longitude);
double lat = Double.parseDouble(latitude);
GeometryFactory geometryFactory = new GeometryFactory();
Coordinate coordinate = new Coordinate(lon, lat);
Point point = geometryFactory.createPoint(coordinate);
if (polygon.contains(point)) {
// 获取多边形的外边界
Coordinate[] coordinates = polygon.getCoordinates();
for (Coordinate coord : coordinates) {
double distance = calculateDistance(lat, lon, coord.y, coord.x);
log.info("距离----distance:{}",distance);
if (shortenDistance >= distance) {
log.info("最小距离----distance:{}",distance);
return false;
}
}
return true;
} else {
return false;
}
}
// 将角度转换为弧度 // 将角度转换为弧度
private static double deg2rad(double deg) { private static double deg2rad(double deg) {
return deg * (Math.PI / 180); return deg * (Math.PI / 180);

View File

@ -62,4 +62,8 @@ public class EtCommandLog extends BaseEntity
@Excel(name = "onenet上报的消息") @Excel(name = "onenet上报的消息")
private String msg; private String msg;
// /** 是否蓝牙控制 0-否1-是否 */
// @Excel(name = "是否蓝牙控制 0-否1-是否 ")
// private String isBluetooth;
} }

View File

@ -91,7 +91,7 @@ public interface IWxPayService {
* @param transactionId 微信支付单号 * @param transactionId 微信支付单号
* @param receivers 分账接收方 * @param receivers 分账接收方
*/ */
public OrdersEntity createOrder(SysDept sysDept, String transactionId, List<CreateOrderReceiver> receivers); // public OrdersEntity createOrder(SysDept sysDept, String transactionId, List<CreateOrderReceiver> receivers);
/** /**
* 添加分账接收方 * 添加分账接收方

View File

@ -47,6 +47,8 @@ import java.util.*;
import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import static com.ruoyi.common.utils.SecurityUtils.getUsername;
/** /**
* 设备Service业务层处理 * 设备Service业务层处理
* *
@ -360,6 +362,35 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
@Override @Override
public int updateAsDevice2(AsDevice asDevice) public int updateAsDevice2(AsDevice asDevice)
{ {
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(asDevice.getDeviceId());//
if(!device.getStatus().equals(asDevice.getStatus())){
if(asDevice.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
if(inOrderBySn){
throw new ServiceException("还有正在骑行中的订单【"+device.getSn()+"】,不能回仓");
}else{
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"回仓",null,getUsername());
}
}
if(asDevice.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_OFFLINE)){
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
if(inOrderBySn){
throw new ServiceException("还有正在骑行中的订单【"+device.getSn()+"】,不能禁用");
}else{
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"禁用",null,getUsername());
}
}
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING) && asDevice.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NORMAL)){
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"出仓",null,getUsername());
}
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_OFFLINE) && asDevice.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NORMAL)){
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"解禁",null,getUsername());
}
}
if(ObjectUtil.isNotNull(asDevice.getAreaId())){ if(ObjectUtil.isNotNull(asDevice.getAreaId())){
SysDept sysDept = wxPayService.getDeptObjByAreaId(asDevice.getAreaId()); SysDept sysDept = wxPayService.getDeptObjByAreaId(asDevice.getAreaId());
if(ObjectUtil.isNotNull(sysDept)){ if(ObjectUtil.isNotNull(sysDept)){
@ -407,12 +438,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
} }
/** /**
* 一键上线 * 一键解禁
* *
* @param deviceIds 需要一键上线的设备主键集合 * @param deviceIds 需要一键解禁的设备主键集合
* @return 结果 * @return 结果
*/ */
@Override @Override
@Transactional
public int oneClickOnline(Long[] deviceIds) public int oneClickOnline(Long[] deviceIds)
{ {
for (Long deviceId:deviceIds) { for (Long deviceId:deviceIds) {
@ -421,8 +453,10 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
throw new ServiceException("车辆【"+deviceId+"】不存在"); throw new ServiceException("车辆【"+deviceId+"】不存在");
} }
if(!device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_OFFLINE)){ if(!device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_OFFLINE)){
throw new ServiceException("车辆【"+device.getSn()+"】非下线状态,请重新选择!"); throw new ServiceException("车辆【"+device.getSn()+"】非解禁状态,请重新选择!");
} }
//记录日志
asynchronousSaveLog(null,null,device.getMac(),null,"解禁",null,getUsername());
} }
return asDeviceMapper.oneClickOnline(deviceIds); return asDeviceMapper.oneClickOnline(deviceIds);
} }
@ -434,6 +468,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
* @return 结果 * @return 结果
*/ */
@Override @Override
@Transactional
public int oneClickListing(Long[] deviceIds) public int oneClickListing(Long[] deviceIds)
{ {
for (Long deviceId:deviceIds) { for (Long deviceId:deviceIds) {
@ -444,39 +479,48 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
if(!device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){ if(!device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){
throw new ServiceException("车辆【"+device.getSn()+"】非仓库中状态,请重新选择!"); throw new ServiceException("车辆【"+device.getSn()+"】非仓库中状态,请重新选择!");
} }
//记录日志
asynchronousSaveLog(null,null,device.getMac(),null,"出仓",null,getUsername());
} }
return asDeviceMapper.oneClickOnline(deviceIds); return asDeviceMapper.oneClickOnline(deviceIds);
} }
/** /**
* 一键下线 * 一键禁用
* *
* @param deviceIds 需要一键下线的设备主键集合 * @param deviceIds 需要一键解禁的设备主键集合
* @return 结果 * @return 结果
*/ */
@Transactional
@Override @Override
public int oneClickOffline(Long[] deviceIds) public int oneClickOffline(Long[] deviceIds)
{ {
for (Long deviceId:deviceIds) { for (Long deviceId:deviceIds) {
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId); AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
if(inOrderBySn){
throw new ServiceException("还有正在骑行中的订单【"+device.getSn()+"】,不能禁用");
}
if(ObjectUtil.isNull(device)){ if(ObjectUtil.isNull(device)){
throw new ServiceException("车辆【"+deviceId+"】不存在"); throw new ServiceException("车辆【"+deviceId+"】不存在");
} }
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘预约中’状态不能下线"); throw new ServiceException("车辆【"+device.getSn()+"】为‘预约中’状态不能禁用");
} }
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_USING)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_IN_USING)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘使用中’状态不能下线"); throw new ServiceException("车辆【"+device.getSn()+"】为‘使用中’状态不能禁用");
} }
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘临时停车’状态不能下线"); throw new ServiceException("车辆【"+device.getSn()+"】为‘临时停车’状态不能禁用");
} }
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_NOT_LISTING)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘未上架’状态不能下线"); throw new ServiceException("车辆【"+device.getSn()+"】为‘未上架’状态不能禁用");
} }
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能下线"); throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能禁用");
} }
//记录日志
asynchronousSaveLog(null,null,device.getMac(),null,"禁用",null,getUsername());
} }
return asDeviceMapper.oneClickOffline(deviceIds); return asDeviceMapper.oneClickOffline(deviceIds);
} }
@ -488,10 +532,15 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
* @return 结果 * @return 结果
*/ */
@Override @Override
@Transactional
public int oneClickWarehousing(Long[] deviceIds) public int oneClickWarehousing(Long[] deviceIds)
{ {
for (Long deviceId:deviceIds) { for (Long deviceId:deviceIds) {
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId); AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());//有进行中的订单跳过
if(inOrderBySn){
throw new ServiceException("车辆【"+device.getSn()+"】有进行中的订单,不能入仓");
}
if(ObjectUtil.isNull(device)){ if(ObjectUtil.isNull(device)){
throw new ServiceException("车辆【"+deviceId+"】不存在"); throw new ServiceException("车辆【"+deviceId+"】不存在");
} }
@ -510,6 +559,8 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){ if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){
throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能入仓"); throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能入仓");
} }
//记录日志
asynchronousSaveLog(null,null,device.getMac(),null,"入仓",null,getUsername());
} }
return asDeviceMapper.oneClickWarehousing(deviceIds); return asDeviceMapper.oneClickWarehousing(deviceIds);
} }
@ -564,6 +615,9 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
public List<AsDevice> vehicleLocalization(String longitude, String latitude,String deptId) { public List<AsDevice> vehicleLocalization(String longitude, String latitude,String deptId) {
QueryWrapper<AsDevice> wrapper = new QueryWrapper<>(); QueryWrapper<AsDevice> wrapper = new QueryWrapper<>();
wrapper.eq("status", "1"); // 设备状态正常 wrapper.eq("status", "1"); // 设备状态正常
if(StrUtil.isBlank(deptId)){
deptId ="100";
}
wrapper.eq("dept_id", deptId); wrapper.eq("dept_id", deptId);
// 查询所有设备 // 查询所有设备
@ -855,42 +909,55 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
} }
/** /**
* 车辆上线 * 车辆解禁
*/ */
@SneakyThrows @SneakyThrows
@Override @Override
public Boolean online(String sn) { public Boolean online(String sn) {
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn); Boolean inOrderBySn = etOrderService.isInOrderBySn(sn);//有进行中的订单跳过
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL); if(!inOrderBySn){
int device = asDeviceMapper.updateAsDevice(asDevice); AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
if(device==0){ asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
log.info("车辆上线状态失败"); int device = asDeviceMapper.updateAsDevice(asDevice);
return Boolean.FALSE; if(device==0){
log.info("车辆解禁状态失败");
return Boolean.FALSE;
}else{
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"解禁",null,getUsername());
}
} }
return Boolean.TRUE; return Boolean.TRUE;
} }
/** /**
* 车辆下线 * 车辆禁用
*/ */
@SneakyThrows @SneakyThrows
@Override @Override
public Boolean offline(String sn,String status) { public Boolean offline(String sn,String status) {
Boolean inOrderBySn = etOrderService.isInOrderBySn(sn);
if(inOrderBySn){
throw new ServiceException("还有正在骑行中的订单【"+sn+"】,不能禁用");
}
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn); AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
if(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT.equals(asDevice.getStatus())){ if(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT.equals(asDevice.getStatus())){
throw new ServiceException("车辆处于预约中,不能下线"); throw new ServiceException("车辆处于预约中,不能禁用");
} }
if(ServiceConstants.VEHICLE_STATUS_IN_USING.equals(asDevice.getStatus())){ if(ServiceConstants.VEHICLE_STATUS_IN_USING.equals(asDevice.getStatus())){
throw new ServiceException("车辆使用中,不能下线"); throw new ServiceException("车辆使用中,不能禁用");
} }
if(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK.equals(asDevice.getStatus())){ if(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK.equals(asDevice.getStatus())){
throw new ServiceException("车辆临时停车中,不能下线"); throw new ServiceException("车辆临时停车中,不能禁用");
} }
asDevice.setStatus(status); asDevice.setStatus(status);
int device = asDeviceMapper.updateAsDevice(asDevice); int device = asDeviceMapper.updateAsDevice(asDevice);
if(device==0){ if(device==0){
log.info("车辆下线状态失败"); log.info("车辆禁用状态失败");
return Boolean.FALSE; return Boolean.FALSE;
}else{
//记录日志
asynchronousSaveLog(null,null,asDevice.getMac(),null,"解禁",null,getUsername());
} }
return Boolean.TRUE; return Boolean.TRUE;
} }
@ -1076,9 +1143,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
etCommandLog.setLongitude(device.getLongitude()); etCommandLog.setLongitude(device.getLongitude());
etCommandLog.setLatitude(device.getLatitude()); etCommandLog.setLatitude(device.getLatitude());
etCommandLog.setCreateTime(DateUtils.getNowDate()); etCommandLog.setCreateTime(DateUtils.getNowDate());
JSONObject paramsObj = JSON.parseObject(result); if(ObjectUtil.isNotNull(result)){
String code = paramsObj.getString("code"); JSONObject paramsObj = JSON.parseObject(result);
etCommandLog.setCallStatus(code); String code = paramsObj.getString("code");
etCommandLog.setCallStatus(code);
}else{
etCommandLog.setCallStatus("0");
}
etCommandLog.setOrderNo(orderNo); etCommandLog.setOrderNo(orderNo);
etCommandLog.setCreateBy(userName); etCommandLog.setCreateBy(userName);
int i = etCommandLogMapper.insertEtCommandLog(etCommandLog); int i = etCommandLogMapper.insertEtCommandLog(etCommandLog);
@ -2131,6 +2202,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
AsDevice device = asDeviceMapper.selectAsDeviceBySn(sn); AsDevice device = asDeviceMapper.selectAsDeviceBySn(sn);
String latitude = device.getLatitude(); String latitude = device.getLatitude();
String longitude = device.getLongitude(); String longitude = device.getLongitude();
log.info("定位:{}{},=============运营区【{}】,边界:【{}】",longitude,latitude,area.getAreaName(),area.getBoundaryStr());
Geometry geometry = GeoUtils.fromWkt(area.getBoundary()); Geometry geometry = GeoUtils.fromWkt(area.getBoundary());
inCircle = GeoUtils.isInCircle(longitude, latitude, geometry); inCircle = GeoUtils.isInCircle(longitude, latitude, geometry);
if(inCircle){ if(inCircle){

View File

@ -228,10 +228,7 @@ public class CallbackServiceImpl implements CallbackService {
// 新增资金流水记录 // 新增资金流水记录
capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_RIDING,ServiceConstants.OWNER_TYPE_OPERATOR,null,ServiceConstants.PAY_TYPE_WX); capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_RIDING,ServiceConstants.OWNER_TYPE_OPERATOR,null,ServiceConstants.PAY_TYPE_WX);
// 24小时后发起分账 // 24小时后发起分账
scheduledExecutorService.schedule(() -> { dividendHandle(transactionId, order, area);
// 请求分账处理
if (dividendHandle(transactionId, order, area)) return;
}, 24 , TimeUnit.HOURS);
logger.info("=================【微信支付回调】4444444=================="); logger.info("=================【微信支付回调】4444444==================");
}else if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_APPOINTMENT)){ }else if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_APPOINTMENT)){
logger.info("【微信支付回调】取消预约支付"); logger.info("【微信支付回调】取消预约支付");
@ -414,7 +411,7 @@ public class CallbackServiceImpl implements CallbackService {
logger.info("区域对象====="+JSON.toJSONString(area)); logger.info("区域对象====="+JSON.toJSONString(area));
logger.info("订单对象====="+JSON.toJSONString(order)); logger.info("订单对象====="+JSON.toJSONString(order));
// 请求分账 // 请求分账
List<CreateOrderReceiver> receivers = new ArrayList<>(); // List<CreateOrderReceiver> receivers = new ArrayList<>();
// 获取到合伙人的openid // 获取到合伙人的openid
SysUser sysUser = new SysUser(); SysUser sysUser = new SysUser();
sysUser.setUserType("03"); sysUser.setUserType("03");
@ -451,7 +448,7 @@ public class CallbackServiceImpl implements CallbackService {
logger.info(sysUser1.getUserName()+"分账比例:"+sysUser1.getDividendProportion()+"%,分账金额:"+multiply); logger.info(sysUser1.getUserName()+"分账比例:"+sysUser1.getDividendProportion()+"%,分账金额:"+multiply);
receiver.setAmount(multiply.multiply(new BigDecimal(100)).longValue()); receiver.setAmount(multiply.multiply(new BigDecimal(100)).longValue());
receiver.setDescription(area.getAreaName()+"共享电动车自动分账"); receiver.setDescription(area.getAreaName()+"共享电动车自动分账");
receivers.add(receiver); // receivers.add(receiver);
etDividendDetail.setAreaId(area.getAreaId()); etDividendDetail.setAreaId(area.getAreaId());
etDividendDetail.setType(ServiceConstants.PROFITSHARING_TYPE_PARTNER); etDividendDetail.setType(ServiceConstants.PROFITSHARING_TYPE_PARTNER);
@ -467,7 +464,8 @@ public class CallbackServiceImpl implements CallbackService {
if(i==0){ if(i==0){
throw new ServiceException("保存分账明细失败"); throw new ServiceException("保存分账明细失败");
} }
// callbackService.capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_RIDING,ServiceConstants.OWNER_TYPE_PARTNER,sysUser1); order.setPayFee(multiply);
callbackService.capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_RIDING,ServiceConstants.OWNER_TYPE_PARTNER,sysUser1,ServiceConstants.PAY_TYPE_WX);
} }
}else{ }else{
logger.info("=================【微信支付回调】合伙人【{}】已禁用或已过期合作期==================",sysUser1.getUserName()); logger.info("=================【微信支付回调】合伙人【{}】已禁用或已过期合作期==================",sysUser1.getUserName());
@ -476,42 +474,42 @@ public class CallbackServiceImpl implements CallbackService {
} }
// 计算平台服务费 // 计算平台服务费
logger.info("=================【微信支付回调】计算平台服务费=================="); // logger.info("=================【微信支付回调】计算平台服务费==================");
platformServiceFee(order, area, receivers); // platformServiceFee(order, area);
List<EtAreaDept> areaId1 = etAreaDeptMapper.selectList(new QueryWrapper<EtAreaDept>().eq("area_id", order.getAreaId())); // List<EtAreaDept> areaId1 = etAreaDeptMapper.selectList(new QueryWrapper<EtAreaDept>().eq("area_id", order.getAreaId()));
if (ObjectUtil.isNotEmpty(areaId1) && areaId1.size() > 0){ // if (ObjectUtil.isNotEmpty(areaId1) && areaId1.size() > 0){
EtAreaDept etAreaDept = areaId1.get(0); // EtAreaDept etAreaDept = areaId1.get(0);
SysDept sysDept = deptService.selectDeptById(etAreaDept.getDeptId()); // SysDept sysDept = deptService.selectDeptById(etAreaDept.getDeptId());
logger.info("获取到运营商对象:【{}】",JSON.toJSON(sysDept)); // logger.info("获取到运营商对象:【{}】",JSON.toJSON(sysDept));
OrdersEntity ordersEntity = wxPayService.createOrder(sysDept,transactionId,receivers); // OrdersEntity ordersEntity = wxPayService.createOrder(sysDept,transactionId,receivers);
if(ordersEntity!=null){ // if(ordersEntity!=null){
logger.info("【微信支付回调】发起分账响应:【{}】",JSON.toJSON(ordersEntity)); // logger.info("【微信支付回调】发起分账响应:【{}】",JSON.toJSON(ordersEntity));
}else{ // }else{
logger.info("【微信支付回调】发起分账失败"); // logger.info("【微信支付回调】发起分账失败");
throw new ServiceException("发起分账失败"); // throw new ServiceException("发起分账失败");
} // }
}else{ // }else{
logger.info("区域:【{}】没有绑定运营商",order.getAreaId()); // logger.info("区域:【{}】没有绑定运营商",order.getAreaId());
throw new ServiceException("区域:【"+order.getAreaId()+"】没有绑定运营商"); // throw new ServiceException("区域:【"+order.getAreaId()+"】没有绑定运营商");
} // }
return false; return false;
} }
/** /**
* 计算平台服务费 * 计算平台服务费
*/ */
private void platformServiceFee(EtOrder order, EtOperatingArea area, List<CreateOrderReceiver> receivers) { private void platformServiceFee(EtOrder order, EtOperatingArea area) {
CreateOrderReceiver receiver = new CreateOrderReceiver(); // CreateOrderReceiver receiver = new CreateOrderReceiver();
SysDept cxPlatform = deptService.selectDeptById(100L);//创享电动车 SysDept cxPlatform = deptService.selectDeptById(100L);//创享电动车
receiver.setType(ReceiverType.MERCHANT_ID.name()); // receiver.setType(ReceiverType.MERCHANT_ID.name());
receiver.setAccount(cxPlatform.getMerchantId()); // receiver.setAccount(cxPlatform.getMerchantId());
receiver.setDescription("平台服务费"); // receiver.setDescription("平台服务费");
BigDecimal divide = new BigDecimal(cxPlatform.getPlatformServiceFee()).divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP); BigDecimal divide = new BigDecimal(cxPlatform.getPlatformServiceFee()).divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP);
BigDecimal platformServiceFee = order.getTotalFee().multiply(divide); BigDecimal platformServiceFee = order.getTotalFee().multiply(divide);
logger.info("平台服务费比例:"+cxPlatform.getPlatformServiceFee()+"%,分账金额:"+platformServiceFee); logger.info("平台服务费比例:"+cxPlatform.getPlatformServiceFee()+"%,分账金额:"+platformServiceFee);
receiver.setAmount(platformServiceFee.longValue());//平台服务费 = 平台服务费比例 * 订单金额 // receiver.setAmount(platformServiceFee.longValue());//平台服务费 = 平台服务费比例 * 订单金额
receivers.add(receiver); // receivers.add(receiver);
EtDividendDetail etDividendDetail = new EtDividendDetail(); EtDividendDetail etDividendDetail = new EtDividendDetail();
etDividendDetail.setAreaId(area.getAreaId()); etDividendDetail.setAreaId(area.getAreaId());
@ -583,11 +581,9 @@ public class CallbackServiceImpl implements CallbackService {
// 更新用户信息清除缓存 // 更新用户信息清除缓存
asUser.setBalance(BigDecimal.ZERO); asUser.setBalance(BigDecimal.ZERO);
int updateUser = userService.updateUser(asUser); int updateUser = userService.updateUser(asUser);
// if(updateUser>0){ if(updateUser>0){
// Collection<String> keys = SpringUtils.getBean(RedisCache.class).keys(CacheConstants.LOGIN_TOKEN_KEY + "*"); logger.info("【微信支付回调】退还押金,更新用户余额成功!");
// redisCache.deleteObject(keys); }
// logger.info("【微信支付回调】退还押金,更新用户余额成功!");
// }
logger.info("=================【微信支付回调】退还押金定时任务结束!!!=================="); logger.info("=================【微信支付回调】退还押金定时任务结束!!!==================");
} else { } else {
throw new ServiceException("没有找到押金充值记录"); throw new ServiceException("没有找到押金充值记录");
@ -708,6 +704,7 @@ public class CallbackServiceImpl implements CallbackService {
logger.info("【微信支付回调】保存资金流水记录成功"); logger.info("【微信支付回调】保存资金流水记录成功");
} }
}else{ }else{
logger.info("【合伙人记录资金流水】");
capitalFlow.setAreaId(order.getAreaId()); capitalFlow.setAreaId(order.getAreaId());
capitalFlow.setOrderNo(order.getOrderNo()); capitalFlow.setOrderNo(order.getOrderNo());
capitalFlow.setOutTradeNo(order.getOutTradeNo()); capitalFlow.setOutTradeNo(order.getOutTradeNo());
@ -717,60 +714,31 @@ public class CallbackServiceImpl implements CallbackService {
capitalFlow.setOwnerId(user.getUserId()); capitalFlow.setOwnerId(user.getUserId());
capitalFlow.setOwner(user.getUserName()); capitalFlow.setOwner(user.getUserName());
capitalFlow.setAmount(order.getPayFee()); capitalFlow.setAmount(order.getPayFee());
// String handlingCharge1 = sysDept.getHandlingCharge(); capitalFlow.setHandlingCharge(BigDecimal.ZERO);//手续费 0
// logger.info("【微信支付回调--保存资金流水记录】 获取到配置手续费==============handlingCharge====================="+handlingCharge1); capitalFlow.setPlatformServiceFee(BigDecimal.ZERO);//平台服务费 0
// BigDecimal bigDecimal = new BigDecimal(handlingCharge1).divide(new BigDecimal(1000), 6, BigDecimal.ROUND_HALF_UP);
// logger.info("【微信支付回调--保存资金流水记录】 转换后手续费==============bigDecimal====================="+bigDecimal);
// BigDecimal handlingCharge = bigDecimal.multiply(order.getPayFee()).setScale(2, BigDecimal.ROUND_HALF_UP);
// logger.info("【微信支付回调--保存资金流水记录】 计算出的手续费==============handlingCharge====================="+handlingCharge);
// BigDecimal serviceFeeScale = new BigDecimal(sysDept.getPlatformServiceFee()).divide(new BigDecimal(100), 6, BigDecimal.ROUND_HALF_UP);
// BigDecimal platformServiceFee = serviceFeeScale.multiply(order.getPayFee());
// logger.info("【微信支付回调--保存资金流水记录】 计算出的平台服务费==============platformServiceFee====================="+platformServiceFee);
// capitalFlow.setPlatformServiceFee(platformServiceFee);
// capitalFlow.setHandlingCharge(handlingCharge);//手续费
if(busType.equals(ServiceConstants.ORDER_TYPE_WITHDRAW)){//提现需要手续费不需要平台服务费 if(busType.equals(ServiceConstants.ORDER_TYPE_WITHDRAW)){//提现需要手续费不需要平台服务费
BigDecimal separateAccountFee = order.getPayFee(); BigDecimal separateAccountFee = order.getPayFee();
capitalFlow.setPartnerDividend(BigDecimal.ZERO); capitalFlow.setPartnerDividend(BigDecimal.ZERO);
capitalFlow.setPlatformServiceFee(BigDecimal.ZERO);
capitalFlow.setOperatorDividend(separateAccountFee.negate()); capitalFlow.setOperatorDividend(separateAccountFee.negate());
capitalFlow.setOperatorBalance(user.getBalance().subtract(separateAccountFee)); capitalFlow.setOperatorBalance(user.getBalance().subtract(separateAccountFee));
userMapper.changeUserBalance(separateAccountFee.negate(),user.getUserId()); userMapper.changeUserBalance(separateAccountFee.negate(),user.getUserId());
logger.info("【保存资金流水记录】 ==============支出====================="); logger.info("【保存资金流水记录】 ==============支出=====================");
}else{ }else{
logger.info("【微信支付回调--保存资金流水记录】 ==============业务类型====================="+busType); logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============业务类型===骑行收入=================="+busType);
// BigDecimal partnerDividend = BigDecimal.ZERO; BigDecimal partnerDividend = order.getPayFee();
// BigDecimal separateAccountFee = order.getPayFee().subtract(handlingCharge).subtract(platformServiceFee); logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============合伙人分账partnerDividend====================="+partnerDividend);
// logger.info("【微信支付回调--保存资金流水记录】 ==============扣掉手续费和服务费之后的金额,这个金额拿来分账====================="+separateAccountFee);
// BigDecimal operatorDividend = separateAccountFee;
// if(sysDept.getIsProfitSharing().equals("true")){//需要分账
// logger.info("【微信支付回调--保存资金流水记录】 ==============需要分账====================="+sysDept.getIsProfitSharing());
// //获取所有合伙人列表
// SysUser sysUser = new SysUser();
// sysUser.setUserType("03");
// sysUser.setAreaId(order.getAreaId());
// List<SysUser> sysUsers = userMapper.selectUserList(sysUser);
// double totalDividendProportion = sysUsers.stream()
// .mapToDouble(SysUser::getDividendProportion)
// .sum();//算出总的分成比例
// BigDecimal decimal = new BigDecimal(totalDividendProportion).divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP);
// partnerDividend = operatorDividend.multiply(decimal);
// operatorDividend = operatorDividend.subtract(partnerDividend);
// }
// logger.info("【微信支付回调--保存资金流水记录】 ==============partnerDividend====================="+partnerDividend);
// logger.info("【微信支付回调--保存资金流水记录】 ==============operatorDividend====================="+operatorDividend);
BigDecimal operatorDividend = order.getPayFee();
if(type.equals(ServiceConstants.FLOW_TYPE_INCOME)){ if(type.equals(ServiceConstants.FLOW_TYPE_INCOME)){
capitalFlow.setPartnerDividend(BigDecimal.ZERO); capitalFlow.setPartnerDividend(partnerDividend);
capitalFlow.setOperatorDividend(BigDecimal.ZERO); capitalFlow.setOperatorDividend(BigDecimal.ZERO);
capitalFlow.setOperatorBalance(user.getBalance().add(operatorDividend)); capitalFlow.setOperatorBalance(user.getBalance().add(partnerDividend));
userMapper.changeUserBalance(operatorDividend,user.getUserId()); userMapper.changeUserBalance(partnerDividend,user.getUserId());
logger.info("【微信支付回调--保存资金流水记录】 ==============收入====================="); logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============收入=====================");
}else{ }else{
capitalFlow.setPartnerDividend(BigDecimal.ZERO); capitalFlow.setPartnerDividend(partnerDividend.negate());
capitalFlow.setOperatorDividend(BigDecimal.ZERO); capitalFlow.setOperatorDividend(BigDecimal.ZERO);
capitalFlow.setOperatorBalance(user.getBalance().subtract(order.getPayFee())); capitalFlow.setOperatorBalance(user.getBalance().subtract(partnerDividend));
userMapper.changeUserBalance(operatorDividend.negate(),user.getUserId()); userMapper.changeUserBalance(partnerDividend.negate(),user.getUserId());
logger.info("【微信支付回调--保存资金流水记录】 ==============支出====================="); logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============支出=====================");
} }
} }
capitalFlow.setPayType(payType); capitalFlow.setPayType(payType);

View File

@ -82,7 +82,7 @@ public class EtFeeRuleServiceImpl implements IEtFeeRuleService
@DataScope(deptAlias = "d") @DataScope(deptAlias = "d")
public List<EtFeeRule> selectEtFeeRuleList(EtFeeRule etFeeRule) public List<EtFeeRule> selectEtFeeRuleList(EtFeeRule etFeeRule)
{ {
if(ObjectUtil.isNotNull(etFeeRule.getAreaId())){ if(ObjectUtil.isNull(etFeeRule.getDeptId()) && ObjectUtil.isNotNull(etFeeRule.getAreaId())){
SysDept sysDept = wxPayService.getDeptObjByAreaId(etFeeRule.getAreaId()); SysDept sysDept = wxPayService.getDeptObjByAreaId(etFeeRule.getAreaId());
etFeeRule.setDeptId(sysDept.getDeptId()); etFeeRule.setDeptId(sysDept.getDeptId());
} }

View File

@ -120,20 +120,20 @@ public class EtModelServiceImpl implements IEtModelService
} }
etModel.setCreateTime(DateUtils.getNowDate()); etModel.setCreateTime(DateUtils.getNowDate());
int i = etModelMapper.insertEtModel(etModel); int i = etModelMapper.insertEtModel(etModel);
// 发送设置低电压命令 // // 发送设置低电压命令
Integer lowBatteryReminder = etModel.getLowBatteryReminder(); // Integer lowBatteryReminder = etModel.getLowBatteryReminder();
if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){ // if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
AsDevice device = new AsDevice(); // AsDevice device = new AsDevice();
device.setModelId(etModel.getModelId()); // device.setModelId(etModel.getModelId());
List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device); // List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
for(AsDevice asDevice: asDevices){ // for(AsDevice asDevice: asDevices){
// 根据百分比计算提醒电压值 // // 根据百分比计算提醒电压值
Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage()); // Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@"; // String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
log.info("发送低电压命令:" + lowVoltageCommand); // log.info("发送低电压命令:" + lowVoltageCommand);
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null,null); // asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null,null);
} // }
} // }
return i; return i;
} }
@ -157,22 +157,22 @@ public class EtModelServiceImpl implements IEtModelService
etModel.setUpdateTime(DateUtils.getNowDate()); etModel.setUpdateTime(DateUtils.getNowDate());
int i = etModelMapper.updateEtModel(etModel); int i = etModelMapper.updateEtModel(etModel);
// 发送设置低电压命令 // 发送设置低电压命令
Integer lowBatteryReminder = etModel.getLowBatteryReminder(); // Integer lowBatteryReminder = etModel.getLowBatteryReminder();
if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){ // if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
AsDevice device = new AsDevice(); // AsDevice device = new AsDevice();
device.setModelId(etModel.getModelId()); // device.setModelId(etModel.getModelId());
List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device); // List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
for(AsDevice asDevice: asDevices){ // for(AsDevice asDevice: asDevices){
// 根据百分比计算提醒电压值 // // 根据百分比计算提醒电压值
Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage()); // Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@"; // String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
log.info("发送低电压命令:" + lowVoltageCommand); // log.info("发送低电压命令:" + lowVoltageCommand);
ResponseVo responseVo = asDeviceService.sendCommandWithResp(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null); // ResponseVo responseVo = asDeviceService.sendCommandWithResp(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null);
if(responseVo.getCode()!=0){ // if(responseVo.getCode()!=0){
log.info("【还车关锁】设备【{}】远程关锁失败", asDevice.getMac()); // log.info("【还车关锁】设备【{}】远程关锁失败", asDevice.getMac());
} // }
} // }
} // }
return i; return i;
} }

View File

@ -225,6 +225,10 @@ public class EtOperatingAreaServiceImpl extends ServiceImpl<EtOperatingAreaMappe
@Override @Override
public int updateEtOperatingArea2(EtOperatingArea etOperatingArea) public int updateEtOperatingArea2(EtOperatingArea etOperatingArea)
{ {
String boundaryStr = etOperatingArea.getBoundaryStr();
Geometry geometry = GeoUtils.toGeometry(boundaryStr);
String wkt = GeoUtils.wkt(geometry);
etOperatingArea.setBoundary(wkt);
int i = dao.updateById(etOperatingArea); int i = dao.updateById(etOperatingArea);
return i; return i;
} }

View File

@ -1530,6 +1530,12 @@ public class EtOrderServiceImpl implements IEtOrderService
if(ObjectUtil.isNotNull(ridingFee) && !ridingFee.equals(BigDecimal.ZERO)){ if(ObjectUtil.isNotNull(ridingFee) && !ridingFee.equals(BigDecimal.ZERO)){
refundAmount = refundAmount.add(ridingFee); refundAmount = refundAmount.add(ridingFee);
} }
// 如果已支付并且支付方式是押金则退款的流程是根据押金退款获取押金订单进行退款
if(etOrder1.getPayType().equals(ServiceConstants.PAY_TYPE_YJ) && etOrder1.getPaid().equals(ServiceConstants.ORDER_PAY_STATUS_PAID)){
etOrder1 = getDepositOrder(etOrder1.getUserId());
log.info("【押金抵扣的退款】:【{}】,退款金额:【{}】", etOrder1.getTotalFee(), refundAmount);
etOrder1.setReason(etOrder.getReason());
}
// 新增资金流水记录 // 新增资金流水记录
etOrder1.setPayFee(refundAmount); etOrder1.setPayFee(refundAmount);
callbackService.capitalFlowRecords(etOrder1,ServiceConstants.FLOW_TYPE_DISBURSE,ServiceConstants.ORDER_TYPE_RIDING_REFUND,ServiceConstants.OWNER_TYPE_OPERATOR,null,ServiceConstants.PAY_TYPE_WX); callbackService.capitalFlowRecords(etOrder1,ServiceConstants.FLOW_TYPE_DISBURSE,ServiceConstants.ORDER_TYPE_RIDING_REFUND,ServiceConstants.OWNER_TYPE_OPERATOR,null,ServiceConstants.PAY_TYPE_WX);
@ -1692,30 +1698,39 @@ public class EtOrderServiceImpl implements IEtOrderService
} }
asDevice.setLastTime(DateUtils.getNowDate()); asDevice.setLastTime(DateUtils.getNowDate());
} }
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE); Boolean execute = transactionTemplate.execute(e -> {
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL); asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
asDevice.setIsAdminUnlocking("0"); asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
int device = asDeviceMapper.updateAsDevice(asDevice); asDevice.setIsAdminUnlocking("0");
if(device==0){ int device = asDeviceMapper.updateAsDevice(asDevice);
log.info("【临时解锁】改变车辆状态失败"); if(device==0){
throw new ServiceException("【临时锁车】改变车辆状态失败"); log.info("【临时解锁】改变车辆状态失败");
} throw new ServiceException("【临时锁车】改变车辆状态失败");
String usedSn = order.getUsedSn(); }
if(StrUtil.isNotBlank(usedSn)){ String usedSn = order.getUsedSn();
usedSn = usedSn+","+sn; if(StrUtil.isNotBlank(usedSn)){
usedSn = usedSn+","+sn;
}else{
usedSn = sn;
}
order.setUsedSn(usedSn);
order.setSn("");
order.setChangeReason(changeReason);
int i = etOrderMapper.updateEtOrderByOrderNo(order);
if(i==0){
log.info("【换车关锁】改变订单使用过的sn失败");
throw new ServiceException("【换车关锁】改变订单使用过的sn失败");
}
return Boolean.TRUE;
});
if(execute){
return Boolean.TRUE;
}else{ }else{
usedSn = sn; return Boolean.FALSE;
}
order.setUsedSn(usedSn);
order.setSn("");
order.setChangeReason(changeReason);
int i = etOrderMapper.updateEtOrderByOrderNo(order);
if(i==0){
log.info("【换车关锁】改变订单使用过的sn失败");
throw new ServiceException("【换车关锁】改变订单使用过的sn失败");
} }
}else{
return Boolean.TRUE;
} }
return Boolean.TRUE;
} }
/** /**
@ -1735,6 +1750,9 @@ public class EtOrderServiceImpl implements IEtOrderService
if (ObjectUtil.isNull(newDevice)) { if (ObjectUtil.isNull(newDevice)) {
throw new ServiceException("设备不存在:"+ newSn); throw new ServiceException("设备不存在:"+ newSn);
} }
if(order.getAreaId() != newDevice.getAreaId()){
throw new ServiceException("不同运营区,请勿操作");
}
/** 1.获取token*/ /** 1.获取token*/
String token = Token.getToken(); String token = Token.getToken();
Boolean execute = transactionTemplate.execute(e -> { Boolean execute = transactionTemplate.execute(e -> {

View File

@ -333,10 +333,10 @@ public class SysDeptServiceImpl implements ISysDeptService
// 添加运营商账号并添加运营商角色 // 添加运营商账号并添加运营商角色
createOperator(dept); createOperator(dept);
// 是否分账 // 是否分账
if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L){ // if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L){
AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM); // AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse)); // log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
} // }
return i; return i;
} }
@ -380,14 +380,14 @@ public class SysDeptServiceImpl implements ISysDeptService
} }
// 添加运营商账号并添加运营商角色 // 添加运营商账号并添加运营商角色
// createOperator(dept); // createOperator(dept);
if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L && !dept.getMerchantId().equals("1656437344")){ // if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L && !dept.getMerchantId().equals("1656437344")){
// 删除分账接收方 // // 删除分账接收方
DeleteReceiverResponse deleteReceiverResponse = wxPayService.deleteReceiver(dept.getMerchantId(),dept.getDeptId(),ServiceConstants.PROFITSHARING_TYPE_PLATFORM); // DeleteReceiverResponse deleteReceiverResponse = wxPayService.deleteReceiver(dept.getMerchantId(),dept.getDeptId(),ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
log.info("删除分账接收方响应:【{}】", JSON.toJSON(deleteReceiverResponse)); // log.info("删除分账接收方响应:【{}】", JSON.toJSON(deleteReceiverResponse));
//
AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM); // AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse)); // log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
} // }
return result; return result;
} }

View File

@ -342,14 +342,14 @@ public class SysUserServiceImpl implements ISysUserService
// 分账项目 // 分账项目
setDividendItem(user); setDividendItem(user);
// 添加分账接收方 // 添加分账接收方
if(user.getUserType().equals("03")){ // if(user.getUserType().equals("03")){
AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber()); // AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
if(ObjectUtils.isNotEmpty(asUser)){ // if(ObjectUtils.isNotEmpty(asUser)){
addReceiver(user,asUser); // addReceiver(user,asUser);
}else{ // }else{
throw new ServiceException("未查询到APP用户,请登录小程序"); // throw new ServiceException("未查询到APP用户,请登录小程序");
} // }
} // }
//根据运营区id查询运营商id 运营商与运营区是一对多关系 //根据运营区id查询运营商id 运营商与运营区是一对多关系
setOperatorId(user); setOperatorId(user);
// 新增用户信息 // 新增用户信息
@ -425,17 +425,17 @@ public class SysUserServiceImpl implements ISysUserService
insertUserPost(user); insertUserPost(user);
// 分账项目 // 分账项目
setDividendItem(user); setDividendItem(user);
if(user.getUserType().equals("03")){ // if(user.getUserType().equals("03")){
AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber()); // AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
if(ObjectUtils.isNotEmpty(asUser)){ // if(ObjectUtils.isNotEmpty(asUser)){
// 删除分账接收方 // // 删除分账接收方
deleteReceiver(asUser.getWxopenid(),user.getDeptId()); // deleteReceiver(asUser.getWxopenid(),user.getDeptId());
// 添加分账接收方 // // 添加分账接收方
addReceiver(user,asUser); // addReceiver(user,asUser);
}else{ // }else{
throw new ServiceException("未查询到APP用户,请登录小程序"); // throw new ServiceException("未查询到APP用户,请登录小程序");
} // }
} // }
//根据运营区id查询运营商id 运营商与运营区是一对多关系 //根据运营区id查询运营商id 运营商与运营区是一对多关系
setOperatorId(user); setOperatorId(user);
return userMapper.updateUser(user); return userMapper.updateUser(user);

View File

@ -102,7 +102,7 @@ public class WxPayService implements IWxPayService {
throw new ServiceException("没有运营商:【"+etAreaDept.getDeptId()+""); throw new ServiceException("没有运营商:【"+etAreaDept.getDeptId()+"");
} }
String isProfitSharing = sysDept.getIsProfitSharing(); // String isProfitSharing = sysDept.getIsProfitSharing();
// 获取JSAPI所需参数 // 获取JSAPI所需参数
PrepayRequest request = new PrepayRequest(); PrepayRequest request = new PrepayRequest();
request.setAmount(getAmount(order.getPayFee())); request.setAmount(getAmount(order.getPayFee()));
@ -125,7 +125,8 @@ public class WxPayService implements IWxPayService {
request.setNotifyUrl(sysDept.getNotifyUrl()); request.setNotifyUrl(sysDept.getNotifyUrl());
request.setPayer(getPayer(user.getWxopenid())); request.setPayer(getPayer(user.getWxopenid()));
SettleInfo settleInfo = new SettleInfo(); SettleInfo settleInfo = new SettleInfo();
settleInfo.setProfitSharing( "true".equalsIgnoreCase(isProfitSharing)); settleInfo.setProfitSharing(false);//暂时关闭分账
// settleInfo.setProfitSharing( "true".equalsIgnoreCase(isProfitSharing));
request.setSettleInfo(settleInfo); request.setSettleInfo(settleInfo);
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept); JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept);
PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request); PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request);

View File

@ -187,36 +187,36 @@ public class EtTask {
* 已过直接分账记录分账明细表 * 已过直接分账记录分账明细表
*/ */
// 查询所有待分账的订单 // 查询所有待分账的订单
List<EtOrder> needDividendOrders = etOrderMapper.selectNeedDividendOrder(); // List<EtOrder> needDividendOrders = etOrderMapper.selectNeedDividendOrder();
for(EtOrder order: needDividendOrders){ // for(EtOrder order: needDividendOrders){
log.info("【系统启动】待分账订单:【{}】",order.getOrderNo()); // log.info("【系统启动】待分账订单:【{}】",order.getOrderNo());
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(order.getAreaId()); // EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(order.getAreaId());
if(dividendDetailService.isDividendComputedByOrderNo(order.getOrderNo())){ // if(dividendDetailService.isDividendComputedByOrderNo(order.getOrderNo())){
log.info("订单【{}】已经分账",order.getOrderNo()); // log.info("订单【{}】已经分账",order.getOrderNo());
break; // break;
} // }
log.info("【系统启动】骑行订单【{}】未分账,开始分账",order.getOrderNo()); // log.info("【系统启动】骑行订单【{}】未分账,开始分账",order.getOrderNo());
Date payTime = order.getPayTime(); // Date payTime = order.getPayTime();
Date dividendTime = DateUtils.getTimeAfterXHours(payTime, 24);//分账时间 // Date dividendTime = DateUtils.getTimeAfterXHours(payTime, 24);//分账时间
Date nowDate = DateUtils.getNowDate(); // Date nowDate = DateUtils.getNowDate();
if (nowDate.after(dividendTime)) { // if (nowDate.after(dividendTime)) {
log.info("【系统启动】骑行订单【{}】已过分账时间,开始分账",order.getOrderNo()); // log.info("【系统启动】骑行订单【{}】已过分账时间,开始分账",order.getOrderNo());
// 请求分账处理 // // 请求分账处理
Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo()); // Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) break; //// if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) break;
}else{ // }else{
int timeDifferenceInHours = DateUtils.timeDifferenceInHours(payTime, nowDate); // int timeDifferenceInHours = DateUtils.timeDifferenceInHours(payTime, nowDate);
int delay = 24 - timeDifferenceInHours; // int delay = 24 - timeDifferenceInHours;
log.info("【系统启动】骑行订单【{}】未过分账时间,【{}】小时后开始分账",order.getOrderNo(),delay); // log.info("【系统启动】骑行订单【{}】未过分账时间,【{}】小时后开始分账",order.getOrderNo(),delay);
// 24小时后发起分账 // // 24小时后发起分账
scheduledExecutorService.schedule(() -> { //// scheduledExecutorService.schedule(() -> {
// 请求分账处理 //// // 请求分账处理
Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo()); //// Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) return; //// if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) return;
}, delay , TimeUnit.HOURS); //// }, delay , TimeUnit.HOURS);
} // }
} // }
log.info("=========================结束========================="); // log.info("=========================结束=========================");
} }

View File

@ -50,7 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
select de.device_id, de.picture, de.device_name, de.mac, de.sn, de.model_id, de.hardware_version_id, de.vehicle_num, de.area_id, select de.device_id, de.picture, de.device_name, de.mac, de.sn, de.model_id, de.hardware_version_id, de.vehicle_num, de.area_id,
de.activation_time, de.online_status, de.create_by, de.create_time, de.update_by, de.activation_time, de.online_status, de.create_by, de.create_time, de.update_by,
de.update_time, de.last_time, de.last_location_time, de.gps, de.remark, de.status, de.lock_status, de.location, de.update_time, de.last_time, de.last_location_time, de.gps, de.remark, de.status, de.lock_status, de.location,
de.remaining_power, de.voltage, de.qrcode, de.longitude, de.latitude, de.is_area_out_outage, de.is_admin_unlocking,appid, app_name, dept_id from et_device de de.remaining_power, de.voltage, de.qrcode, de.longitude, de.latitude, de.is_area_out_outage, de.is_admin_unlocking,de.appid, de.app_name, de.dept_id from et_device de
left join et_area_dept ad on ad.area_id = de.area_id left join et_area_dept ad on ad.area_id = de.area_id
left join sys_dept d on d.dept_id = ad.dept_id left join sys_dept d on d.dept_id = ad.dept_id
where 1 = 1 where 1 = 1

View File

@ -104,7 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select> </select>
<select id="selectAreaListByDeptId2" resultMap="EtOperatingAreaResult" parameterType="Long"> <select id="selectAreaListByDeptId2" resultMap="EtOperatingAreaResult" parameterType="Long">
select a.area_id, a.area_name select a.area_id, a.area_name, d.dept_name deptName
from et_operating_area a from et_operating_area a
left join et_area_dept ad on ad.area_id = a.area_id left join et_area_dept ad on ad.area_id = a.area_id
left join sys_dept d on d.dept_id = ad.dept_id left join sys_dept d on d.dept_id = ad.dept_id

View File

@ -65,7 +65,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</sql> </sql>
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult"> <select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, u.area_id,u.dividend_proportion,u.dividend_item,u.app_user_id, u.cooperation_time,u.dividend_status,u.balance, d.dept_name, d.leader,a.area_name areaName from sys_user u select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber, u.sex, u.status, u.del_flag, u.login_ip,
u.login_date, u.create_by, u.create_time, u.remark, u.area_id,u.dividend_proportion,u.dividend_item,u.app_user_id, u.cooperation_time,
u.dividend_status,u.balance, d.dept_name, d.leader,a.area_name areaName from sys_user u
left join sys_dept d on u.dept_id = d.dept_id left join sys_dept d on u.dept_id = d.dept_id
left join et_operating_area a on u.area_id = a.area_id left join et_operating_area a on u.area_id = a.area_id
where u.del_flag = '0' where u.del_flag = '0'