1. 优化bug等等
2. 暂时关闭分账 3. 靠近运营区边界播报 4. 日志优化 5. 单元测试
This commit is contained in:
parent
aa7821bfa9
commit
37f9e8eae1
|
@ -61,6 +61,25 @@
|
|||
<artifactId>electripper-generator</artifactId>
|
||||
</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>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -19,6 +19,7 @@ import com.ruoyi.common.utils.CommonUtil;
|
|||
import com.ruoyi.common.utils.SendAliSmsUtil;
|
||||
import com.ruoyi.common.utils.SendSmsVo;
|
||||
import com.ruoyi.common.utils.map.GeoUtils;
|
||||
import com.ruoyi.common.utils.map.GpsCoordinateUtils;
|
||||
import com.ruoyi.common.utils.onenet.Token;
|
||||
import com.ruoyi.framework.web.service.SysLoginService;
|
||||
import com.ruoyi.system.domain.*;
|
||||
|
@ -33,6 +34,8 @@ import org.springframework.web.bind.annotation.*;
|
|||
|
||||
import javax.annotation.Resource;
|
||||
import java.io.UnsupportedEncodingException;
|
||||
import java.math.BigDecimal;
|
||||
import java.math.RoundingMode;
|
||||
import java.security.InvalidKeyException;
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
import java.util.List;
|
||||
|
@ -610,4 +613,60 @@ public class AppController extends BaseController
|
|||
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;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -901,7 +901,8 @@ public class AppVerifyController extends BaseController
|
|||
BigDecimal todayOrderAmount = getTodayOrderAmount(sysDept);
|
||||
// 更新 sysDept 的余额字段
|
||||
if (sysDept.getBalance() != null) {
|
||||
sysDept.setBalance(sysDept.getBalance().subtract(todayOrderAmount));
|
||||
sysDept.setSettlementAmount(todayOrderAmount);
|
||||
sysDept.setWithdrawableAmount(sysDept.getBalance().subtract(todayOrderAmount));
|
||||
}
|
||||
return success(sysDept);
|
||||
}
|
||||
|
@ -927,6 +928,9 @@ public class AppVerifyController extends BaseController
|
|||
todayOrderAmount = todayOrderAmount.add(areaOrderAmount);
|
||||
}
|
||||
}
|
||||
if(todayOrderAmount.compareTo(sysDept.getBalance()) > 0){
|
||||
todayOrderAmount = sysDept.getBalance();
|
||||
}
|
||||
return todayOrderAmount;
|
||||
}
|
||||
|
||||
|
|
|
@ -37,6 +37,7 @@ import java.security.InvalidKeyException;
|
|||
import java.security.NoSuchAlgorithmException;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.atomic.AtomicLong;
|
||||
|
||||
/**
|
||||
* 接收硬件参数
|
||||
|
@ -71,6 +72,9 @@ public class ReceiveController {
|
|||
@Autowired
|
||||
private IEtOrderService etOrderService;
|
||||
|
||||
@Autowired
|
||||
private ISysConfigService sysConfigService;
|
||||
|
||||
@Autowired
|
||||
private ScheduledExecutorService scheduledExecutorService;
|
||||
|
||||
|
@ -79,6 +83,10 @@ public class ReceiveController {
|
|||
|
||||
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>
|
||||
|
@ -232,25 +240,50 @@ public class ReceiveController {
|
|||
}
|
||||
}else{
|
||||
//是否在禁行区20米范围内
|
||||
boolean inPolygon = asDeviceService.isNoRidingAreaWithTolerance(device.getSn(), device.getAreaId(),20);
|
||||
boolean inPolygon = asDeviceService.isNoRidingAreaWithTolerance(device.getSn(), device.getAreaId(),30);
|
||||
if (inPolygon && !isAdminUnlocking.equals("1")) {
|
||||
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.超出运营区外断电*/
|
||||
boolean isAreaZone = asDeviceService.isAreaZone(device.getSn(), area);
|
||||
if(!isAreaZone){
|
||||
//是否在30米范围内
|
||||
boolean inPolygon = GeoUtils.isInPolygonWithTolerance(lon.toString(), lat.toString(), GeoUtils.fromWkt(area.getBoundary()), 60);
|
||||
if(inPolygon && !isAdminUnlocking.equals("1")){
|
||||
/** 3. 判断是否在运营区外
|
||||
* a. 判断是否在缩短后的运营区边界内
|
||||
* 如果在,走 返回营运区上电 逻辑
|
||||
* 如果不在,
|
||||
* 判断是否靠近运营区边界
|
||||
* 靠近,播报
|
||||
* 不靠近,判断是否在运营区外
|
||||
*
|
||||
**/
|
||||
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米范围内,发报警
|
||||
log.info("超出运营区30米内发送警告命令--SN:" + device.getSn());
|
||||
asDeviceService.sendCommand(device.getMac(), Token.getToken(), IotConstants.COMMAND_PLAY3, "超出运营区30米内",null,null);
|
||||
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") && value.getStatus() != 3 && !isAdminUnlocking.equals("1")) { // 超出营运区断电
|
||||
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);
|
||||
|
@ -261,8 +294,7 @@ public class ReceiveController {
|
|||
}
|
||||
}
|
||||
}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(!noRidingArea){
|
||||
log.info("返回营运区上电,有正在骑行的订单,给车辆上电--SN:" + device.getSn());
|
||||
|
@ -301,10 +333,14 @@ public class ReceiveController {
|
|||
optimizeRoute(jsonArray, newPoint,lon,lat,etOrder);
|
||||
|
||||
}else{
|
||||
long currentTime = System.currentTimeMillis();
|
||||
long lastTime = lastCommandTime.get();// 上一次命令时间,5分账内不再执行 ‘车辆锁同步关锁’ 命令
|
||||
long difference = System.currentTimeMillis() - logEntry.getAt();
|
||||
log.info("当前时间戳:【"+System.currentTimeMillis()+"】,消息时间:【"+logEntry.getAt()+"】,时间差:【"+difference+"】");
|
||||
if (difference < 60 * 1000 && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) {
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), IotConstants.COMMAND_CLOSE + IotConstants.COMMAND_FREQUENCY_3600, "车辆锁同步关锁", null, null, msg);
|
||||
if (difference < 60 * 1000 && ServiceConstants.LOCK_STATUS_CLOSE.equals(device.getLockStatus())) {// 消息时间和当前时间,时间差在1分钟内,且锁状态为关闭,则发送命令
|
||||
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 {
|
||||
jsonArray.add(newPoint);
|
||||
String tripRouteStr = jsonArray.toJSONString();
|
||||
log.info("更新行程jsonArray:" + tripRouteStr);
|
||||
// log.info("更新行程jsonArray:" + tripRouteStr);
|
||||
etOrder.setTripRouteStr(tripRouteStr);
|
||||
|
||||
Geometry geometry = GeoUtils.toGeometryByLinearRing(tripRouteStr);
|
||||
|
|
|
@ -122,7 +122,7 @@ public class AsDeviceController extends BaseController
|
|||
}
|
||||
|
||||
/**
|
||||
* 一键下线
|
||||
* 一键禁用
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('system:device:oneClickOffline')")
|
||||
@Log(title = "设备", businessType = BusinessType.OFFLINE)
|
||||
|
|
|
@ -107,9 +107,13 @@ public class SysDeptController extends BaseController
|
|||
SysDept sysDept = deptService.selectDeptById(deptId);
|
||||
BigDecimal todayOrderAmount = getTodayOrderAmount(deptId);
|
||||
|
||||
if(todayOrderAmount.compareTo(sysDept.getBalance()) > 0){
|
||||
todayOrderAmount = sysDept.getBalance();
|
||||
}
|
||||
// 更新 sysDept 的余额字段
|
||||
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);
|
||||
|
|
|
@ -126,10 +126,10 @@ public class SysLoginController
|
|||
Long userId = SecurityUtils.getUserId();
|
||||
List<SysMenu> menus = menuService.selectMenuTreeByUserId(userId);
|
||||
SysDept sysDept = deptService.selectDeptById(SecurityUtils.getDeptId());
|
||||
if(!sysDept.getIsProfitSharing().equals("true")){
|
||||
// 去掉 menus 中的名字为‘合伙人管理’的菜单
|
||||
menus.removeIf(menu -> menu.getMenuName().equals("合伙人管理"));
|
||||
}
|
||||
// if(!sysDept.getIsProfitSharing().equals("true")){
|
||||
// // 去掉 menus 中的名字为‘合伙人管理’的菜单
|
||||
// menus.removeIf(menu -> menu.getMenuName().equals("合伙人管理"));
|
||||
// }
|
||||
if(sysDept.getDeptId() == 101){
|
||||
// 找出 menus 中的名字为‘财务管理’的菜单,获取到它子菜单
|
||||
menus.stream().filter(menu -> menu.getMenuName().equals("财务管理")).forEach(menu -> {
|
||||
|
|
97
electripper-admin/src/test/java/MainTests.java
Normal file
97
electripper-admin/src/test/java/MainTests.java
Normal 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("在运营区域内");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -124,6 +124,28 @@ public class SysDept extends BaseEntity
|
|||
/** 收款码 */
|
||||
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() {
|
||||
return collectionCode;
|
||||
}
|
||||
|
|
|
@ -250,6 +250,7 @@ public class GeoUtils {
|
|||
double distance = calculateDistance(lat, lon, coord.y, coord.x);
|
||||
log.info("距离----distance:{}",distance);
|
||||
if (distance <= tolerance) {
|
||||
log.info("最小距离----distance:{}",distance);
|
||||
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) {
|
||||
return deg * (Math.PI / 180);
|
||||
|
|
|
@ -62,4 +62,8 @@ public class EtCommandLog extends BaseEntity
|
|||
@Excel(name = "onenet上报的消息")
|
||||
private String msg;
|
||||
|
||||
// /** 是否蓝牙控制 0-否;1-是否 */
|
||||
// @Excel(name = "是否蓝牙控制 0-否;1-是否 ")
|
||||
// private String isBluetooth;
|
||||
|
||||
}
|
||||
|
|
|
@ -91,7 +91,7 @@ public interface IWxPayService {
|
|||
* @param transactionId 微信支付单号
|
||||
* @param receivers 分账接收方
|
||||
*/
|
||||
public OrdersEntity createOrder(SysDept sysDept, String transactionId, List<CreateOrderReceiver> receivers);
|
||||
// public OrdersEntity createOrder(SysDept sysDept, String transactionId, List<CreateOrderReceiver> receivers);
|
||||
|
||||
/**
|
||||
* 添加分账接收方
|
||||
|
|
|
@ -47,6 +47,8 @@ import java.util.*;
|
|||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import static com.ruoyi.common.utils.SecurityUtils.getUsername;
|
||||
|
||||
/**
|
||||
* 设备Service业务层处理
|
||||
*
|
||||
|
@ -360,6 +362,35 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
@Override
|
||||
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())){
|
||||
SysDept sysDept = wxPayService.getDeptObjByAreaId(asDevice.getAreaId());
|
||||
if(ObjectUtil.isNotNull(sysDept)){
|
||||
|
@ -407,12 +438,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
}
|
||||
|
||||
/**
|
||||
* 一键上线
|
||||
* 一键解禁
|
||||
*
|
||||
* @param deviceIds 需要一键上线的设备主键集合
|
||||
* @param deviceIds 需要一键解禁的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public int oneClickOnline(Long[] deviceIds)
|
||||
{
|
||||
for (Long deviceId:deviceIds) {
|
||||
|
@ -421,8 +453,10 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
throw new ServiceException("车辆【"+deviceId+"】不存在");
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
@ -434,6 +468,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public int oneClickListing(Long[] 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)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】非仓库中状态,请重新选择!");
|
||||
}
|
||||
//记录日志
|
||||
asynchronousSaveLog(null,null,device.getMac(),null,"出仓",null,getUsername());
|
||||
}
|
||||
return asDeviceMapper.oneClickOnline(deviceIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 一键下线
|
||||
* 一键禁用
|
||||
*
|
||||
* @param deviceIds 需要一键下线的设备主键集合
|
||||
* @param deviceIds 需要一键解禁的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
@Transactional
|
||||
@Override
|
||||
public int oneClickOffline(Long[] deviceIds)
|
||||
{
|
||||
for (Long deviceId:deviceIds) {
|
||||
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
|
||||
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());
|
||||
if(inOrderBySn){
|
||||
throw new ServiceException("还有正在骑行中的订单【"+device.getSn()+"】,不能禁用");
|
||||
}
|
||||
if(ObjectUtil.isNull(device)){
|
||||
throw new ServiceException("车辆【"+deviceId+"】不存在");
|
||||
}
|
||||
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)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘使用中’状态不能下线");
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘使用中’状态不能禁用");
|
||||
}
|
||||
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)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘未上架’状态不能下线");
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘未上架’状态不能禁用");
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
@ -488,10 +532,15 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
@Transactional
|
||||
public int oneClickWarehousing(Long[] deviceIds)
|
||||
{
|
||||
for (Long deviceId:deviceIds) {
|
||||
AsDevice device = asDeviceMapper.selectAsDeviceByDeviceId(deviceId);
|
||||
Boolean inOrderBySn = etOrderService.isInOrderBySn(device.getSn());//有进行中的订单,跳过
|
||||
if(inOrderBySn){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】有进行中的订单,不能入仓");
|
||||
}
|
||||
if(ObjectUtil.isNull(device)){
|
||||
throw new ServiceException("车辆【"+deviceId+"】不存在");
|
||||
}
|
||||
|
@ -510,6 +559,8 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
if(device.getStatus().equals(ServiceConstants.VEHICLE_STATUS_ABANDON)){
|
||||
throw new ServiceException("车辆【"+device.getSn()+"】为‘废弃’状态不能入仓");
|
||||
}
|
||||
//记录日志
|
||||
asynchronousSaveLog(null,null,device.getMac(),null,"入仓",null,getUsername());
|
||||
}
|
||||
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) {
|
||||
QueryWrapper<AsDevice> wrapper = new QueryWrapper<>();
|
||||
wrapper.eq("status", "1"); // 设备状态正常
|
||||
if(StrUtil.isBlank(deptId)){
|
||||
deptId ="100";
|
||||
}
|
||||
wrapper.eq("dept_id", deptId);
|
||||
|
||||
// 查询所有设备
|
||||
|
@ -855,42 +909,55 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
}
|
||||
|
||||
/**
|
||||
* 车辆上线
|
||||
* 车辆解禁
|
||||
*/
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean online(String sn) {
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("车辆上线状态失败");
|
||||
return Boolean.FALSE;
|
||||
Boolean inOrderBySn = etOrderService.isInOrderBySn(sn);//有进行中的订单,跳过
|
||||
if(!inOrderBySn){
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("车辆解禁状态失败");
|
||||
return Boolean.FALSE;
|
||||
}else{
|
||||
//记录日志
|
||||
asynchronousSaveLog(null,null,asDevice.getMac(),null,"解禁",null,getUsername());
|
||||
}
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* 车辆下线
|
||||
* 车辆禁用
|
||||
*/
|
||||
@SneakyThrows
|
||||
@Override
|
||||
public Boolean offline(String sn,String status) {
|
||||
Boolean inOrderBySn = etOrderService.isInOrderBySn(sn);
|
||||
if(inOrderBySn){
|
||||
throw new ServiceException("还有正在骑行中的订单【"+sn+"】,不能禁用");
|
||||
}
|
||||
AsDevice asDevice = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
if(ServiceConstants.VEHICLE_STATUS_IN_APPOINTMENT.equals(asDevice.getStatus())){
|
||||
throw new ServiceException("车辆处于预约中,不能下线");
|
||||
throw new ServiceException("车辆处于预约中,不能禁用");
|
||||
}
|
||||
if(ServiceConstants.VEHICLE_STATUS_IN_USING.equals(asDevice.getStatus())){
|
||||
throw new ServiceException("车辆使用中,不能下线");
|
||||
throw new ServiceException("车辆使用中,不能禁用");
|
||||
}
|
||||
if(ServiceConstants.VEHICLE_STATUS_TEMPORARILY_LOCK.equals(asDevice.getStatus())){
|
||||
throw new ServiceException("车辆临时停车中,不能下线");
|
||||
throw new ServiceException("车辆临时停车中,不能禁用");
|
||||
}
|
||||
asDevice.setStatus(status);
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("车辆下线状态失败");
|
||||
log.info("车辆禁用状态失败");
|
||||
return Boolean.FALSE;
|
||||
}else{
|
||||
//记录日志
|
||||
asynchronousSaveLog(null,null,asDevice.getMac(),null,"解禁",null,getUsername());
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
|
@ -1076,9 +1143,13 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
etCommandLog.setLongitude(device.getLongitude());
|
||||
etCommandLog.setLatitude(device.getLatitude());
|
||||
etCommandLog.setCreateTime(DateUtils.getNowDate());
|
||||
JSONObject paramsObj = JSON.parseObject(result);
|
||||
String code = paramsObj.getString("code");
|
||||
etCommandLog.setCallStatus(code);
|
||||
if(ObjectUtil.isNotNull(result)){
|
||||
JSONObject paramsObj = JSON.parseObject(result);
|
||||
String code = paramsObj.getString("code");
|
||||
etCommandLog.setCallStatus(code);
|
||||
}else{
|
||||
etCommandLog.setCallStatus("0");
|
||||
}
|
||||
etCommandLog.setOrderNo(orderNo);
|
||||
etCommandLog.setCreateBy(userName);
|
||||
int i = etCommandLogMapper.insertEtCommandLog(etCommandLog);
|
||||
|
@ -2131,6 +2202,7 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
AsDevice device = asDeviceMapper.selectAsDeviceBySn(sn);
|
||||
String latitude = device.getLatitude();
|
||||
String longitude = device.getLongitude();
|
||||
log.info("定位:{},{},=============运营区【{}】,边界:【{}】",longitude,latitude,area.getAreaName(),area.getBoundaryStr());
|
||||
Geometry geometry = GeoUtils.fromWkt(area.getBoundary());
|
||||
inCircle = GeoUtils.isInCircle(longitude, latitude, geometry);
|
||||
if(inCircle){
|
||||
|
|
|
@ -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);
|
||||
// 24小时后发起分账
|
||||
scheduledExecutorService.schedule(() -> {
|
||||
// 请求分账处理
|
||||
if (dividendHandle(transactionId, order, area)) return;
|
||||
}, 24 , TimeUnit.HOURS);
|
||||
dividendHandle(transactionId, order, area);
|
||||
logger.info("=================【微信支付回调】4444444==================");
|
||||
}else if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_APPOINTMENT)){
|
||||
logger.info("【微信支付回调】取消预约支付");
|
||||
|
@ -414,7 +411,7 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
logger.info("区域对象====="+JSON.toJSONString(area));
|
||||
logger.info("订单对象====="+JSON.toJSONString(order));
|
||||
// 请求分账
|
||||
List<CreateOrderReceiver> receivers = new ArrayList<>();
|
||||
// List<CreateOrderReceiver> receivers = new ArrayList<>();
|
||||
// 获取到合伙人的openid
|
||||
SysUser sysUser = new SysUser();
|
||||
sysUser.setUserType("03");
|
||||
|
@ -451,7 +448,7 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
logger.info(sysUser1.getUserName()+"分账比例:"+sysUser1.getDividendProportion()+"%,分账金额:"+multiply);
|
||||
receiver.setAmount(multiply.multiply(new BigDecimal(100)).longValue());
|
||||
receiver.setDescription(area.getAreaName()+"共享电动车自动分账");
|
||||
receivers.add(receiver);
|
||||
// receivers.add(receiver);
|
||||
|
||||
etDividendDetail.setAreaId(area.getAreaId());
|
||||
etDividendDetail.setType(ServiceConstants.PROFITSHARING_TYPE_PARTNER);
|
||||
|
@ -467,7 +464,8 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
if(i==0){
|
||||
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{
|
||||
logger.info("=================【微信支付回调】合伙人【{}】已禁用或已过期合作期==================",sysUser1.getUserName());
|
||||
|
@ -476,42 +474,42 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
}
|
||||
|
||||
// 计算平台服务费
|
||||
logger.info("=================【微信支付回调】计算平台服务费==================");
|
||||
platformServiceFee(order, area, receivers);
|
||||
// logger.info("=================【微信支付回调】计算平台服务费==================");
|
||||
// platformServiceFee(order, area);
|
||||
|
||||
List<EtAreaDept> areaId1 = etAreaDeptMapper.selectList(new QueryWrapper<EtAreaDept>().eq("area_id", order.getAreaId()));
|
||||
if (ObjectUtil.isNotEmpty(areaId1) && areaId1.size() > 0){
|
||||
EtAreaDept etAreaDept = areaId1.get(0);
|
||||
SysDept sysDept = deptService.selectDeptById(etAreaDept.getDeptId());
|
||||
logger.info("获取到运营商对象:【{}】",JSON.toJSON(sysDept));
|
||||
OrdersEntity ordersEntity = wxPayService.createOrder(sysDept,transactionId,receivers);
|
||||
if(ordersEntity!=null){
|
||||
logger.info("【微信支付回调】发起分账响应:【{}】",JSON.toJSON(ordersEntity));
|
||||
}else{
|
||||
logger.info("【微信支付回调】发起分账失败");
|
||||
throw new ServiceException("发起分账失败");
|
||||
}
|
||||
}else{
|
||||
logger.info("区域:【{}】没有绑定运营商",order.getAreaId());
|
||||
throw new ServiceException("区域:【"+order.getAreaId()+"】没有绑定运营商");
|
||||
}
|
||||
// List<EtAreaDept> areaId1 = etAreaDeptMapper.selectList(new QueryWrapper<EtAreaDept>().eq("area_id", order.getAreaId()));
|
||||
// if (ObjectUtil.isNotEmpty(areaId1) && areaId1.size() > 0){
|
||||
// EtAreaDept etAreaDept = areaId1.get(0);
|
||||
// SysDept sysDept = deptService.selectDeptById(etAreaDept.getDeptId());
|
||||
// logger.info("获取到运营商对象:【{}】",JSON.toJSON(sysDept));
|
||||
// OrdersEntity ordersEntity = wxPayService.createOrder(sysDept,transactionId,receivers);
|
||||
// if(ordersEntity!=null){
|
||||
// logger.info("【微信支付回调】发起分账响应:【{}】",JSON.toJSON(ordersEntity));
|
||||
// }else{
|
||||
// logger.info("【微信支付回调】发起分账失败");
|
||||
// throw new ServiceException("发起分账失败");
|
||||
// }
|
||||
// }else{
|
||||
// logger.info("区域:【{}】没有绑定运营商",order.getAreaId());
|
||||
// throw new ServiceException("区域:【"+order.getAreaId()+"】没有绑定运营商");
|
||||
// }
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 计算平台服务费
|
||||
*/
|
||||
private void platformServiceFee(EtOrder order, EtOperatingArea area, List<CreateOrderReceiver> receivers) {
|
||||
CreateOrderReceiver receiver = new CreateOrderReceiver();
|
||||
private void platformServiceFee(EtOrder order, EtOperatingArea area) {
|
||||
// CreateOrderReceiver receiver = new CreateOrderReceiver();
|
||||
SysDept cxPlatform = deptService.selectDeptById(100L);//创享电动车
|
||||
receiver.setType(ReceiverType.MERCHANT_ID.name());
|
||||
receiver.setAccount(cxPlatform.getMerchantId());
|
||||
receiver.setDescription("平台服务费");
|
||||
// receiver.setType(ReceiverType.MERCHANT_ID.name());
|
||||
// receiver.setAccount(cxPlatform.getMerchantId());
|
||||
// receiver.setDescription("平台服务费");
|
||||
BigDecimal divide = new BigDecimal(cxPlatform.getPlatformServiceFee()).divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP);
|
||||
BigDecimal platformServiceFee = order.getTotalFee().multiply(divide);
|
||||
logger.info("平台服务费比例:"+cxPlatform.getPlatformServiceFee()+"%,分账金额:"+platformServiceFee);
|
||||
receiver.setAmount(platformServiceFee.longValue());//平台服务费 = 平台服务费比例 * 订单金额
|
||||
receivers.add(receiver);
|
||||
// receiver.setAmount(platformServiceFee.longValue());//平台服务费 = 平台服务费比例 * 订单金额
|
||||
// receivers.add(receiver);
|
||||
|
||||
EtDividendDetail etDividendDetail = new EtDividendDetail();
|
||||
etDividendDetail.setAreaId(area.getAreaId());
|
||||
|
@ -583,11 +581,9 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
// 更新用户信息,清除缓存
|
||||
asUser.setBalance(BigDecimal.ZERO);
|
||||
int updateUser = userService.updateUser(asUser);
|
||||
// if(updateUser>0){
|
||||
// Collection<String> keys = SpringUtils.getBean(RedisCache.class).keys(CacheConstants.LOGIN_TOKEN_KEY + "*");
|
||||
// redisCache.deleteObject(keys);
|
||||
// logger.info("【微信支付回调】退还押金,更新用户余额成功!");
|
||||
// }
|
||||
if(updateUser>0){
|
||||
logger.info("【微信支付回调】退还押金,更新用户余额成功!");
|
||||
}
|
||||
logger.info("=================【微信支付回调】退还押金定时任务结束!!!==================");
|
||||
} else {
|
||||
throw new ServiceException("没有找到押金充值记录");
|
||||
|
@ -708,6 +704,7 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
logger.info("【微信支付回调】保存资金流水记录成功");
|
||||
}
|
||||
}else{
|
||||
logger.info("【合伙人记录资金流水】");
|
||||
capitalFlow.setAreaId(order.getAreaId());
|
||||
capitalFlow.setOrderNo(order.getOrderNo());
|
||||
capitalFlow.setOutTradeNo(order.getOutTradeNo());
|
||||
|
@ -717,60 +714,31 @@ public class CallbackServiceImpl implements CallbackService {
|
|||
capitalFlow.setOwnerId(user.getUserId());
|
||||
capitalFlow.setOwner(user.getUserName());
|
||||
capitalFlow.setAmount(order.getPayFee());
|
||||
// String handlingCharge1 = sysDept.getHandlingCharge();
|
||||
// logger.info("【微信支付回调--保存资金流水记录】 获取到配置手续费==============handlingCharge=====================:"+handlingCharge1);
|
||||
// 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);//手续费
|
||||
capitalFlow.setHandlingCharge(BigDecimal.ZERO);//手续费 0
|
||||
capitalFlow.setPlatformServiceFee(BigDecimal.ZERO);//平台服务费 0
|
||||
if(busType.equals(ServiceConstants.ORDER_TYPE_WITHDRAW)){//提现,需要手续费,不需要平台服务费
|
||||
BigDecimal separateAccountFee = order.getPayFee();
|
||||
capitalFlow.setPartnerDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setPlatformServiceFee(BigDecimal.ZERO);
|
||||
capitalFlow.setOperatorDividend(separateAccountFee.negate());
|
||||
capitalFlow.setOperatorBalance(user.getBalance().subtract(separateAccountFee));
|
||||
userMapper.changeUserBalance(separateAccountFee.negate(),user.getUserId());
|
||||
logger.info("【保存资金流水记录】 ==============支出=====================:");
|
||||
}else{
|
||||
logger.info("【微信支付回调--保存资金流水记录】 ==============业务类型=====================:"+busType);
|
||||
// BigDecimal partnerDividend = BigDecimal.ZERO;
|
||||
// BigDecimal separateAccountFee = order.getPayFee().subtract(handlingCharge).subtract(platformServiceFee);
|
||||
// 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();
|
||||
logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============业务类型===骑行收入==================:"+busType);
|
||||
BigDecimal partnerDividend = order.getPayFee();
|
||||
logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============合伙人分账partnerDividend=====================:"+partnerDividend);
|
||||
if(type.equals(ServiceConstants.FLOW_TYPE_INCOME)){
|
||||
capitalFlow.setPartnerDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setPartnerDividend(partnerDividend);
|
||||
capitalFlow.setOperatorDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setOperatorBalance(user.getBalance().add(operatorDividend));
|
||||
userMapper.changeUserBalance(operatorDividend,user.getUserId());
|
||||
logger.info("【微信支付回调--保存资金流水记录】 ==============收入=====================:");
|
||||
capitalFlow.setOperatorBalance(user.getBalance().add(partnerDividend));
|
||||
userMapper.changeUserBalance(partnerDividend,user.getUserId());
|
||||
logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============收入=====================:");
|
||||
}else{
|
||||
capitalFlow.setPartnerDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setPartnerDividend(partnerDividend.negate());
|
||||
capitalFlow.setOperatorDividend(BigDecimal.ZERO);
|
||||
capitalFlow.setOperatorBalance(user.getBalance().subtract(order.getPayFee()));
|
||||
userMapper.changeUserBalance(operatorDividend.negate(),user.getUserId());
|
||||
logger.info("【微信支付回调--保存资金流水记录】 ==============支出=====================:");
|
||||
capitalFlow.setOperatorBalance(user.getBalance().subtract(partnerDividend));
|
||||
userMapper.changeUserBalance(partnerDividend.negate(),user.getUserId());
|
||||
logger.info("【微信支付回调(合伙人)--保存资金流水记录】 ==============支出=====================:");
|
||||
}
|
||||
}
|
||||
capitalFlow.setPayType(payType);
|
||||
|
|
|
@ -82,7 +82,7 @@ public class EtFeeRuleServiceImpl implements IEtFeeRuleService
|
|||
@DataScope(deptAlias = "d")
|
||||
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());
|
||||
etFeeRule.setDeptId(sysDept.getDeptId());
|
||||
}
|
||||
|
|
|
@ -120,20 +120,20 @@ public class EtModelServiceImpl implements IEtModelService
|
|||
}
|
||||
etModel.setCreateTime(DateUtils.getNowDate());
|
||||
int i = etModelMapper.insertEtModel(etModel);
|
||||
// 发送设置低电压命令
|
||||
Integer lowBatteryReminder = etModel.getLowBatteryReminder();
|
||||
if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
|
||||
AsDevice device = new AsDevice();
|
||||
device.setModelId(etModel.getModelId());
|
||||
List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
|
||||
for(AsDevice asDevice: asDevices){
|
||||
// 根据百分比计算提醒电压值
|
||||
Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
|
||||
String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
|
||||
log.info("发送低电压命令:" + lowVoltageCommand);
|
||||
asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null,null);
|
||||
}
|
||||
}
|
||||
// // 发送设置低电压命令
|
||||
// Integer lowBatteryReminder = etModel.getLowBatteryReminder();
|
||||
// if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
|
||||
// AsDevice device = new AsDevice();
|
||||
// device.setModelId(etModel.getModelId());
|
||||
// List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
|
||||
// for(AsDevice asDevice: asDevices){
|
||||
// // 根据百分比计算提醒电压值
|
||||
// Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
|
||||
// String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
|
||||
// log.info("发送低电压命令:" + lowVoltageCommand);
|
||||
// asDeviceService.sendCommand(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null,null);
|
||||
// }
|
||||
// }
|
||||
return i;
|
||||
}
|
||||
|
||||
|
@ -157,22 +157,22 @@ public class EtModelServiceImpl implements IEtModelService
|
|||
etModel.setUpdateTime(DateUtils.getNowDate());
|
||||
int i = etModelMapper.updateEtModel(etModel);
|
||||
// 发送设置低电压命令
|
||||
Integer lowBatteryReminder = etModel.getLowBatteryReminder();
|
||||
if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
|
||||
AsDevice device = new AsDevice();
|
||||
device.setModelId(etModel.getModelId());
|
||||
List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
|
||||
for(AsDevice asDevice: asDevices){
|
||||
// 根据百分比计算提醒电压值
|
||||
Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
|
||||
String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
|
||||
log.info("发送低电压命令:" + lowVoltageCommand);
|
||||
ResponseVo responseVo = asDeviceService.sendCommandWithResp(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null);
|
||||
if(responseVo.getCode()!=0){
|
||||
log.info("【还车关锁】设备【{}】远程关锁失败", asDevice.getMac());
|
||||
}
|
||||
}
|
||||
}
|
||||
// Integer lowBatteryReminder = etModel.getLowBatteryReminder();
|
||||
// if(ObjectUtil.isNotNull(lowBatteryReminder) && lowBatteryReminder > 0){
|
||||
// AsDevice device = new AsDevice();
|
||||
// device.setModelId(etModel.getModelId());
|
||||
// List<AsDevice> asDevices = asDeviceMapper.selectAsDeviceList(device);
|
||||
// for(AsDevice asDevice: asDevices){
|
||||
// // 根据百分比计算提醒电压值
|
||||
// Integer quantityByPercentage = CommonUtil.getElectricQuantityByPercentage(lowBatteryReminder, etModel.getFullVoltage(), etModel.getLowVoltage());
|
||||
// String lowVoltageCommand = IotConstants.COMMAND_BAT + quantityByPercentage * 10 + "@";
|
||||
// log.info("发送低电压命令:" + lowVoltageCommand);
|
||||
// ResponseVo responseVo = asDeviceService.sendCommandWithResp(asDevice.getMac(), Token.getToken(), lowVoltageCommand,"发送低电压播报",null);
|
||||
// if(responseVo.getCode()!=0){
|
||||
// log.info("【还车关锁】设备【{}】远程关锁失败", asDevice.getMac());
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
return i;
|
||||
}
|
||||
|
||||
|
|
|
@ -225,6 +225,10 @@ public class EtOperatingAreaServiceImpl extends ServiceImpl<EtOperatingAreaMappe
|
|||
@Override
|
||||
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);
|
||||
return i;
|
||||
}
|
||||
|
|
|
@ -1530,6 +1530,12 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
if(ObjectUtil.isNotNull(ridingFee) && !ridingFee.equals(BigDecimal.ZERO)){
|
||||
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);
|
||||
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.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
asDevice.setIsAdminUnlocking("0");
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("【临时解锁】改变车辆状态失败");
|
||||
throw new ServiceException("【临时锁车】改变车辆状态失败");
|
||||
}
|
||||
String usedSn = order.getUsedSn();
|
||||
if(StrUtil.isNotBlank(usedSn)){
|
||||
usedSn = usedSn+","+sn;
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
|
||||
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);
|
||||
asDevice.setIsAdminUnlocking("0");
|
||||
int device = asDeviceMapper.updateAsDevice(asDevice);
|
||||
if(device==0){
|
||||
log.info("【临时解锁】改变车辆状态失败");
|
||||
throw new ServiceException("【临时锁车】改变车辆状态失败");
|
||||
}
|
||||
String usedSn = order.getUsedSn();
|
||||
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{
|
||||
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.FALSE;
|
||||
}
|
||||
}else{
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1735,6 +1750,9 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
if (ObjectUtil.isNull(newDevice)) {
|
||||
throw new ServiceException("设备不存在:"+ newSn);
|
||||
}
|
||||
if(order.getAreaId() != newDevice.getAreaId()){
|
||||
throw new ServiceException("不同运营区,请勿操作");
|
||||
}
|
||||
/** 1.获取token*/
|
||||
String token = Token.getToken();
|
||||
Boolean execute = transactionTemplate.execute(e -> {
|
||||
|
|
|
@ -333,10 +333,10 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
// 添加运营商账号并添加运营商角色
|
||||
createOperator(dept);
|
||||
// 是否分账
|
||||
if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L){
|
||||
AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
|
||||
log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
|
||||
}
|
||||
// if("true".equals(dept.getIsProfitSharing()) && StringUtils.isNotEmpty(dept.getMerchantId()) && dept.getParentId() != 0L){
|
||||
// AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
|
||||
// log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
|
||||
// }
|
||||
return i;
|
||||
}
|
||||
|
||||
|
@ -380,14 +380,14 @@ public class SysDeptServiceImpl implements ISysDeptService
|
|||
}
|
||||
// 添加运营商账号并添加运营商角色
|
||||
// createOperator(dept);
|
||||
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);
|
||||
log.info("删除分账接收方响应:【{}】", JSON.toJSON(deleteReceiverResponse));
|
||||
|
||||
AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
|
||||
log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
|
||||
}
|
||||
// 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);
|
||||
// log.info("删除分账接收方响应:【{}】", JSON.toJSON(deleteReceiverResponse));
|
||||
//
|
||||
// AddReceiverResponse addReceiverResponse = wxPayService.addReceiver(dept.getMerchantId(),dept.getDeptId(), ServiceConstants.PROFITSHARING_TYPE_PLATFORM);
|
||||
// log.info("添加分账接收方响应:【{}】", JSON.toJSON(addReceiverResponse));
|
||||
// }
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
|
@ -342,14 +342,14 @@ public class SysUserServiceImpl implements ISysUserService
|
|||
// 分账项目
|
||||
setDividendItem(user);
|
||||
// 添加分账接收方
|
||||
if(user.getUserType().equals("03")){
|
||||
AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
|
||||
if(ObjectUtils.isNotEmpty(asUser)){
|
||||
addReceiver(user,asUser);
|
||||
}else{
|
||||
throw new ServiceException("未查询到APP用户,请登录小程序");
|
||||
}
|
||||
}
|
||||
// if(user.getUserType().equals("03")){
|
||||
// AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
|
||||
// if(ObjectUtils.isNotEmpty(asUser)){
|
||||
// addReceiver(user,asUser);
|
||||
// }else{
|
||||
// throw new ServiceException("未查询到APP用户,请登录小程序");
|
||||
// }
|
||||
// }
|
||||
//根据运营区id查询运营商id, 运营商与运营区是一对多关系
|
||||
setOperatorId(user);
|
||||
// 新增用户信息
|
||||
|
@ -425,17 +425,17 @@ public class SysUserServiceImpl implements ISysUserService
|
|||
insertUserPost(user);
|
||||
// 分账项目
|
||||
setDividendItem(user);
|
||||
if(user.getUserType().equals("03")){
|
||||
AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
|
||||
if(ObjectUtils.isNotEmpty(asUser)){
|
||||
// 删除分账接收方
|
||||
deleteReceiver(asUser.getWxopenid(),user.getDeptId());
|
||||
// 添加分账接收方
|
||||
addReceiver(user,asUser);
|
||||
}else{
|
||||
throw new ServiceException("未查询到APP用户,请登录小程序");
|
||||
}
|
||||
}
|
||||
// if(user.getUserType().equals("03")){
|
||||
// AsUser asUser = asUserService.selectUserByPhone(user.getPhonenumber());
|
||||
// if(ObjectUtils.isNotEmpty(asUser)){
|
||||
// // 删除分账接收方
|
||||
// deleteReceiver(asUser.getWxopenid(),user.getDeptId());
|
||||
// // 添加分账接收方
|
||||
// addReceiver(user,asUser);
|
||||
// }else{
|
||||
// throw new ServiceException("未查询到APP用户,请登录小程序");
|
||||
// }
|
||||
// }
|
||||
//根据运营区id查询运营商id, 运营商与运营区是一对多关系
|
||||
setOperatorId(user);
|
||||
return userMapper.updateUser(user);
|
||||
|
|
|
@ -102,7 +102,7 @@ public class WxPayService implements IWxPayService {
|
|||
throw new ServiceException("没有运营商:【"+etAreaDept.getDeptId()+"】");
|
||||
}
|
||||
|
||||
String isProfitSharing = sysDept.getIsProfitSharing();
|
||||
// String isProfitSharing = sysDept.getIsProfitSharing();
|
||||
// 获取JSAPI所需参数
|
||||
PrepayRequest request = new PrepayRequest();
|
||||
request.setAmount(getAmount(order.getPayFee()));
|
||||
|
@ -125,7 +125,8 @@ public class WxPayService implements IWxPayService {
|
|||
request.setNotifyUrl(sysDept.getNotifyUrl());
|
||||
request.setPayer(getPayer(user.getWxopenid()));
|
||||
SettleInfo settleInfo = new SettleInfo();
|
||||
settleInfo.setProfitSharing( "true".equalsIgnoreCase(isProfitSharing));
|
||||
settleInfo.setProfitSharing(false);//暂时关闭分账
|
||||
// settleInfo.setProfitSharing( "true".equalsIgnoreCase(isProfitSharing));
|
||||
request.setSettleInfo(settleInfo);
|
||||
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept);
|
||||
PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request);
|
||||
|
|
|
@ -187,36 +187,36 @@ public class EtTask {
|
|||
* 已过,直接分账(记录分账明细表)
|
||||
*/
|
||||
// 查询所有待分账的订单
|
||||
List<EtOrder> needDividendOrders = etOrderMapper.selectNeedDividendOrder();
|
||||
for(EtOrder order: needDividendOrders){
|
||||
log.info("【系统启动】待分账订单:【{}】",order.getOrderNo());
|
||||
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(order.getAreaId());
|
||||
if(dividendDetailService.isDividendComputedByOrderNo(order.getOrderNo())){
|
||||
log.info("订单【{}】已经分账",order.getOrderNo());
|
||||
break;
|
||||
}
|
||||
log.info("【系统启动】骑行订单【{}】未分账,开始分账",order.getOrderNo());
|
||||
Date payTime = order.getPayTime();
|
||||
Date dividendTime = DateUtils.getTimeAfterXHours(payTime, 24);//分账时间
|
||||
Date nowDate = DateUtils.getNowDate();
|
||||
if (nowDate.after(dividendTime)) {
|
||||
log.info("【系统启动】骑行订单【{}】已过分账时间,开始分账",order.getOrderNo());
|
||||
// 请求分账处理
|
||||
Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
|
||||
if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) break;
|
||||
}else{
|
||||
int timeDifferenceInHours = DateUtils.timeDifferenceInHours(payTime, nowDate);
|
||||
int delay = 24 - timeDifferenceInHours;
|
||||
log.info("【系统启动】骑行订单【{}】未过分账时间,【{}】小时后开始分账",order.getOrderNo(),delay);
|
||||
// 24小时后发起分账
|
||||
scheduledExecutorService.schedule(() -> {
|
||||
// 请求分账处理
|
||||
Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
|
||||
if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) return;
|
||||
}, delay , TimeUnit.HOURS);
|
||||
}
|
||||
}
|
||||
log.info("=========================结束=========================");
|
||||
// List<EtOrder> needDividendOrders = etOrderMapper.selectNeedDividendOrder();
|
||||
// for(EtOrder order: needDividendOrders){
|
||||
// log.info("【系统启动】待分账订单:【{}】",order.getOrderNo());
|
||||
// EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(order.getAreaId());
|
||||
// if(dividendDetailService.isDividendComputedByOrderNo(order.getOrderNo())){
|
||||
// log.info("订单【{}】已经分账",order.getOrderNo());
|
||||
// break;
|
||||
// }
|
||||
// log.info("【系统启动】骑行订单【{}】未分账,开始分账",order.getOrderNo());
|
||||
// Date payTime = order.getPayTime();
|
||||
// Date dividendTime = DateUtils.getTimeAfterXHours(payTime, 24);//分账时间
|
||||
// Date nowDate = DateUtils.getNowDate();
|
||||
// if (nowDate.after(dividendTime)) {
|
||||
// log.info("【系统启动】骑行订单【{}】已过分账时间,开始分账",order.getOrderNo());
|
||||
// // 请求分账处理
|
||||
// Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
|
||||
//// if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) break;
|
||||
// }else{
|
||||
// int timeDifferenceInHours = DateUtils.timeDifferenceInHours(payTime, nowDate);
|
||||
// int delay = 24 - timeDifferenceInHours;
|
||||
// log.info("【系统启动】骑行订单【{}】未过分账时间,【{}】小时后开始分账",order.getOrderNo(),delay);
|
||||
// // 24小时后发起分账
|
||||
//// scheduledExecutorService.schedule(() -> {
|
||||
//// // 请求分账处理
|
||||
//// Transaction transaction = wxPayService.queryOrderByOutTradeNo(order.getOrderNo());
|
||||
//// if (callbackService.dividendHandle(transaction.getTransactionId(), order, area)) return;
|
||||
//// }, delay , TimeUnit.HOURS);
|
||||
// }
|
||||
// }
|
||||
// log.info("=========================结束=========================");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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,
|
||||
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.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 sys_dept d on d.dept_id = ad.dept_id
|
||||
where 1 = 1
|
||||
|
|
|
@ -104,7 +104,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</select>
|
||||
|
||||
<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
|
||||
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
|
||||
|
|
|
@ -65,7 +65,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</sql>
|
||||
|
||||
<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 et_operating_area a on u.area_id = a.area_id
|
||||
where u.del_flag = '0'
|
||||
|
|
Loading…
Reference in New Issue
Block a user