Compare commits
No commits in common. "ea05b4dcd5d4a3666d5e6bf4d71005b527b4c483" and "e10fb12fdda447480f7e6da1da5bcb757ed2d2cd" have entirely different histories.
ea05b4dcd5
...
e10fb12fdd
|
@ -363,13 +363,4 @@ public class GeoUtils {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* 计算给定点到多边形的最短距离
|
|
||||||
* */
|
|
||||||
public double calculateMinDistanceToPolygon(Geometry polygon, double lon, double lat) {
|
|
||||||
Coordinate coord = new Coordinate(lon, lat);
|
|
||||||
Point point = new GeometryFactory().createPoint(coord);
|
|
||||||
return polygon.distance(point); // 返回给定点到多边形的最短距离
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -366,13 +366,4 @@ public class EtOrder extends BaseEntity
|
||||||
|
|
||||||
/** 支付渠道 */
|
/** 支付渠道 */
|
||||||
public Long payChannel;
|
public Long payChannel;
|
||||||
|
|
||||||
/** 还车定位方式:1-设备定位;2-手机定位 */
|
|
||||||
private String returnMode;
|
|
||||||
|
|
||||||
/** 还车经度 */
|
|
||||||
private String returnLon;
|
|
||||||
|
|
||||||
/** 还车纬度 */
|
|
||||||
private String returnLat;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,16 @@
|
||||||
package com.ruoyi.system.mapper;
|
package com.ruoyi.system.mapper;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.time.LocalDate;
|
||||||
|
import java.util.List;
|
||||||
import com.ruoyi.system.domain.EtOrder;
|
import com.ruoyi.system.domain.EtOrder;
|
||||||
import com.ruoyi.system.domain.EtOrderQuery;
|
import com.ruoyi.system.domain.EtOrderQuery;
|
||||||
import com.ruoyi.system.domain.IncomeQuery;
|
import com.ruoyi.system.domain.IncomeQuery;
|
||||||
import com.ruoyi.system.domain.vo.IncomeVo;
|
import com.ruoyi.system.domain.vo.IncomeVo;
|
||||||
|
import com.ruoyi.system.domain.vo.IndexVo;
|
||||||
import com.ruoyi.system.domain.vo.RechargeVo;
|
import com.ruoyi.system.domain.vo.RechargeVo;
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 订单Mapper接口
|
* 订单Mapper接口
|
||||||
*
|
*
|
||||||
|
@ -140,14 +141,6 @@ public interface EtOrderMapper
|
||||||
*/
|
*/
|
||||||
public int isInOrderBySn(@Param("sn") String sn);
|
public int isInOrderBySn(@Param("sn") String sn);
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询当前车辆是否有正在进行中的订单
|
|
||||||
*
|
|
||||||
* @param sn 用户id
|
|
||||||
* @return 结果
|
|
||||||
*/
|
|
||||||
public EtOrder getInOrderBySn(@Param("sn") String sn);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 检验预约订单只能有一个
|
* 检验预约订单只能有一个
|
||||||
*
|
*
|
||||||
|
|
|
@ -2412,16 +2412,17 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
||||||
// }
|
// }
|
||||||
|
|
||||||
private Boolean isParkingZoneByLocation(String longitude, String latitude,Long areaId) {
|
private Boolean isParkingZoneByLocation(String longitude, String latitude,Long areaId) {
|
||||||
boolean inCircle = false;
|
Boolean inCircle = false;
|
||||||
EtParkingArea parkingArea = new EtParkingArea();
|
EtParkingArea parkingArea = new EtParkingArea();
|
||||||
parkingArea.setAreaId(areaId);
|
parkingArea.setAreaId(areaId);
|
||||||
parkingArea.setStatus("0");
|
parkingArea.setStatus("0");
|
||||||
parkingArea.setType(ServiceConstants.PARKING_AREA_TYPE_PARKFING);
|
parkingArea.setType(ServiceConstants.PARKING_AREA_TYPE_PARKFING);
|
||||||
List<EtParkingArea> parkingAreas = parkingAreaService.selectEtParkingAreaList(parkingArea);
|
List<EtParkingArea> parkingAreas = parkingAreaService.selectEtParkingAreaList(parkingArea);
|
||||||
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(areaId);
|
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(areaId);
|
||||||
if(ObjectUtil.isNull(parkingAreas) || parkingAreas.isEmpty()){
|
if(ObjectUtil.isNull(parkingAreas) || parkingAreas.size() == 0){
|
||||||
log.info("运营区【{}】没有停车区,",areaId);
|
log.info("运营区【{}】没有停车区,",areaId);
|
||||||
return true;
|
return true;
|
||||||
|
// throw new ServiceException("运营区【{}】没有停车区"+areaId.toString());
|
||||||
}
|
}
|
||||||
double tolerance = area.getError(); // 误差距离
|
double tolerance = area.getError(); // 误差距离
|
||||||
for (EtParkingArea etParkingArea : parkingAreas) {
|
for (EtParkingArea etParkingArea : parkingAreas) {
|
||||||
|
@ -2432,6 +2433,8 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
||||||
inCircle = GeoUtils.isInPolygonWithTolerance(longitude, latitude, geometry, tolerance);
|
inCircle = GeoUtils.isInPolygonWithTolerance(longitude, latitude, geometry, tolerance);
|
||||||
if(inCircle){
|
if(inCircle){
|
||||||
log.info("位置【{},{}】在停车区【{}】内",longitude,latitude,etParkingArea.getParkingName());
|
log.info("位置【{},{}】在停车区【{}】内",longitude,latitude,etParkingArea.getParkingName());
|
||||||
|
inCircle = true;
|
||||||
|
break;
|
||||||
}else{
|
}else{
|
||||||
log.info("位置【{},{}】不在停车区【{}】内",longitude,latitude,etParkingArea.getParkingName());
|
log.info("位置【{},{}】不在停车区【{}】内",longitude,latitude,etParkingArea.getParkingName());
|
||||||
}
|
}
|
||||||
|
@ -2694,60 +2697,22 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
||||||
if(ObjectUtil.isNotNull(latestLocation)){
|
if(ObjectUtil.isNotNull(latestLocation)){
|
||||||
BigDecimal longitude1 = BigDecimal.valueOf(latestLocation[1]).setScale(8, RoundingMode.HALF_UP);
|
BigDecimal longitude1 = BigDecimal.valueOf(latestLocation[1]).setScale(8, RoundingMode.HALF_UP);
|
||||||
BigDecimal latitude1 = BigDecimal.valueOf(latestLocation[0]).setScale(8, RoundingMode.HALF_UP);
|
BigDecimal latitude1 = BigDecimal.valueOf(latestLocation[0]).setScale(8, RoundingMode.HALF_UP);
|
||||||
log.info("【判断是否在停车区--设备的定位】,lon:{},lat:{}",longitude1,latitude1);
|
log.info("【判断是否在停车区】,lon:{},lat:{}",longitude1,latitude1);
|
||||||
|
|
||||||
Boolean parkingZoneByLocation = isParkingZoneByLocation(longitude1.toString(), latitude1.toString(), Long.parseLong(areaId));
|
Boolean parkingZoneByLocation = isParkingZoneByLocation(longitude1.toString(), latitude1.toString(), Long.parseLong(areaId));
|
||||||
if(parkingZoneByLocation){
|
if(parkingZoneByLocation){
|
||||||
return getParkingAreaVo(isInParkingAreaVo, true, area,sn,"1",longitude1.toString(),latitude1.toString());
|
isInParkingAreaVo.setIsInParkingArea(true);
|
||||||
}
|
isInParkingAreaVo.setParkingReturn("1".equals(area.getParkingReturn()));
|
||||||
// 如果longitude1和latitude1定位距离最近的停车点的距离小于50米,则可以用手机定位判断是否在停车区,如果大于50米,则直接返回不在停车区
|
return isInParkingAreaVo;
|
||||||
double minDistanceToParkingArea = findMinDistanceToParkingAreas(Double.parseDouble(longitude1.toString()), Double.parseDouble(latitude1.toString()), Long.parseLong(areaId));
|
|
||||||
log.info("【判断是否在停车区(不在停车点内)--距离停车点最小距离】,minDistanceToParkingArea:{}",minDistanceToParkingArea);
|
|
||||||
if (minDistanceToParkingArea > 50) { // 如果距离大于50米,直接返回不在停车区
|
|
||||||
log.info("【判断是否在停车区--大于50米,不在停车点内】,不在停车区");
|
|
||||||
return getParkingAreaVo(isInParkingAreaVo, false, area,sn,"1",longitude1.toString(),latitude1.toString());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Boolean parkingZoneByLocation = isParkingZoneByLocation(longitude, latitude, Long.parseLong(areaId));
|
Boolean parkingZoneByLocation = isParkingZoneByLocation(longitude, latitude, Long.parseLong(areaId));
|
||||||
return getParkingAreaVo(isInParkingAreaVo, parkingZoneByLocation, area,sn,"2",longitude,latitude);
|
isInParkingAreaVo.setIsInParkingArea(parkingZoneByLocation);
|
||||||
}
|
//停车点还车:0-关闭;1-开启
|
||||||
|
|
||||||
private @NotNull IsInParkingAreaVo getParkingAreaVo(IsInParkingAreaVo isInParkingAreaVo, boolean isInParkingArea, EtOperatingArea area, String sn,
|
|
||||||
String returnMode, String longitude, String latitude) {
|
|
||||||
isInParkingAreaVo.setIsInParkingArea(isInParkingArea);
|
|
||||||
isInParkingAreaVo.setParkingReturn("1".equals(area.getParkingReturn()));
|
isInParkingAreaVo.setParkingReturn("1".equals(area.getParkingReturn()));
|
||||||
EtOrder inOrderBySn = etOrderMapper.getInOrderBySn(sn);
|
|
||||||
if(ObjectUtil.isNotNull(inOrderBySn)){
|
|
||||||
EtOrder etOrder = new EtOrder();
|
|
||||||
etOrder.setOrderNo(inOrderBySn.getOrderNo());
|
|
||||||
etOrder.setReturnMode(returnMode);
|
|
||||||
etOrder.setReturnLon(longitude);
|
|
||||||
etOrder.setReturnLat(latitude);
|
|
||||||
etOrderMapper.updateEtOrderByOrderNo(etOrder);
|
|
||||||
}
|
|
||||||
return isInParkingAreaVo;
|
return isInParkingAreaVo;
|
||||||
}
|
}
|
||||||
|
|
||||||
private double findMinDistanceToParkingAreas(double longitude, double latitude, long areaId) {
|
|
||||||
EtParkingArea parkingArea = new EtParkingArea();
|
|
||||||
parkingArea.setAreaId(areaId);
|
|
||||||
parkingArea.setStatus("0");
|
|
||||||
parkingArea.setType(ServiceConstants.PARKING_AREA_TYPE_PARKFING);
|
|
||||||
List<EtParkingArea> parkingAreas = parkingAreaService.selectEtParkingAreaList(parkingArea);
|
|
||||||
double minDistance = Double.MAX_VALUE;
|
|
||||||
|
|
||||||
for (EtParkingArea etParkingArea : parkingAreas) {
|
|
||||||
Geometry geometry = GeoUtils.fromWkt(etParkingArea.getBoundary());
|
|
||||||
double distance = GeoUtils.calculateMinDistanceToPolygon(geometry, longitude, latitude);
|
|
||||||
if (distance < minDistance) {
|
|
||||||
minDistance = distance;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return minDistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询版本并更新
|
* 查询版本并更新
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -194,7 +194,7 @@ public class EtOrderServiceImpl implements IEtOrderService
|
||||||
}
|
}
|
||||||
// 退款记录
|
// 退款记录
|
||||||
List<EtRefund> refunds = etRefundService.selectEtRefundByOrderNo(order.getOrderNo());
|
List<EtRefund> refunds = etRefundService.selectEtRefundByOrderNo(order.getOrderNo());
|
||||||
if(ObjectUtils.isNotEmpty(refunds) && !refunds.isEmpty()){
|
if(ObjectUtils.isNotEmpty(refunds) && refunds.size() > 0){
|
||||||
order.setEtRefunds(refunds);
|
order.setEtRefunds(refunds);
|
||||||
}
|
}
|
||||||
return order;
|
return order;
|
||||||
|
@ -2249,7 +2249,8 @@ public class EtOrderServiceImpl implements IEtOrderService
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<EtOrder> isInAuditOrder(Long userId,String orderNo) {
|
public List<EtOrder> isInAuditOrder(Long userId,String orderNo) {
|
||||||
return etOrderMapper.isInAuditOrder(userId, orderNo);
|
List<EtOrder> inOrder = etOrderMapper.isInAuditOrder(userId, orderNo);
|
||||||
|
return inOrder;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* 查询当前车辆是否有正在进行中的订单
|
* 查询当前车辆是否有正在进行中的订单
|
||||||
|
|
|
@ -141,8 +141,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
o.platform_service_fee,
|
o.platform_service_fee,
|
||||||
o.operator_dividend,
|
o.operator_dividend,
|
||||||
o.pay_channel,
|
o.pay_channel,
|
||||||
o.capped_amount,
|
|
||||||
o.rental_unit,
|
|
||||||
o.cost
|
o.cost
|
||||||
FROM
|
FROM
|
||||||
et_order o
|
et_order o
|
||||||
|
@ -478,11 +476,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
o.handling_charge,
|
o.handling_charge,
|
||||||
o.platform_service_fee,
|
o.platform_service_fee,
|
||||||
o.operator_dividend,
|
o.operator_dividend,
|
||||||
o.cost,
|
o.cost
|
||||||
o.used_sn,
|
|
||||||
o.return_mode,
|
|
||||||
o.return_lon,
|
|
||||||
o.return_lat
|
|
||||||
from et_order o
|
from et_order o
|
||||||
LEFT JOIN et_user u ON u.user_id = o.user_id
|
LEFT JOIN et_user u ON u.user_id = o.user_id
|
||||||
LEFT JOIN et_operating_area oa ON o.area_id = oa.area_id
|
LEFT JOIN et_operating_area oa ON o.area_id = oa.area_id
|
||||||
|
@ -520,11 +514,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
where sn = #{sn} and status =2 and type = 1
|
where sn = #{sn} and status =2 and type = 1
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="getInOrderBySn" resultMap="EtOrderResult" parameterType="String">
|
|
||||||
<include refid="selectEtOrderVoNoRoute"/>
|
|
||||||
where sn = #{sn} and status =2 and type = 1
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="checkIsUnique" resultType="Integer" parameterType="Long">
|
<select id="checkIsUnique" resultType="Integer" parameterType="Long">
|
||||||
select count(1) from et_order
|
select count(1) from et_order
|
||||||
where user_id = #{userId} and status = 0 and type=1
|
where user_id = #{userId} and status = 0 and type=1
|
||||||
|
@ -1205,9 +1194,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
|
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
|
||||||
<if test="payChannel != null">pay_channel = #{payChannel},</if>
|
<if test="payChannel != null">pay_channel = #{payChannel},</if>
|
||||||
<if test="cost != null">cost = #{cost},</if>
|
<if test="cost != null">cost = #{cost},</if>
|
||||||
<if test="returnMode != null">return_mode = #{returnMode},</if>
|
|
||||||
<if test="returnLon != null">return_lon = #{returnLon},</if>
|
|
||||||
<if test="returnLat != null">return_lat = #{returnLat},</if>
|
|
||||||
</trim>
|
</trim>
|
||||||
where order_id = #{orderId}
|
where order_id = #{orderId}
|
||||||
</update>
|
</update>
|
||||||
|
@ -1268,9 +1254,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
|
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
|
||||||
<if test="payChannel != null">pay_channel = #{payChannel},</if>
|
<if test="payChannel != null">pay_channel = #{payChannel},</if>
|
||||||
<if test="cost != null">cost = #{cost},</if>
|
<if test="cost != null">cost = #{cost},</if>
|
||||||
<if test="returnMode != null">return_mode = #{returnMode},</if>
|
|
||||||
<if test="returnLon != null">return_lon = #{returnLon},</if>
|
|
||||||
<if test="returnLat != null">return_lat = #{returnLat},</if>
|
|
||||||
</trim>
|
</trim>
|
||||||
where order_no = #{orderNo}
|
where order_no = #{orderNo}
|
||||||
</update>
|
</update>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user