1.合伙人分账功能
This commit is contained in:
parent
ae3cea85b4
commit
2b01d14ea5
|
@ -283,7 +283,7 @@ public class ServiceConstants {
|
|||
public static final String VEHICLE_STATUS_OFFLINE = "0";
|
||||
|
||||
/**
|
||||
* 在线状态: 0-在线
|
||||
* 在线状态: 1-在线
|
||||
*/
|
||||
public static final String VEHICLE_STATUS_ONLINE = "1";
|
||||
|
||||
|
|
|
@ -535,7 +535,7 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
}
|
||||
}else{
|
||||
TmTradeInfo tradeInfo = paymentResult.getTradeInfo();
|
||||
if(PayStatus.isSuccess(tradeInfo.getPayStatus().getCode())) {
|
||||
if(tradeInfo.getPayStatus()!=null && PayStatus.isSuccess(tradeInfo.getPayStatus().getCode())) {
|
||||
handleSuccess(order);
|
||||
return 1;
|
||||
}else{
|
||||
|
@ -1859,7 +1859,7 @@ public class EtOrderServiceImpl implements IEtOrderService
|
|||
if(ObjectUtil.isNotNull(ridingFee) && !ridingFee.equals(BigDecimal.ZERO)){
|
||||
refundAmount = refundAmount.add(ridingFee);
|
||||
}
|
||||
BigDecimal refundPercentage = refundAmount.divide(etOrder1.getPayFee()).setScale(2, RoundingMode.HALF_UP);// 0.33
|
||||
BigDecimal refundPercentage = refundAmount.divide(etOrder1.getPayFee(), 2, RoundingMode.HALF_UP);// 0.33
|
||||
// 合伙人退款
|
||||
BigDecimal totalPartnerDividend = partnerRefund(etOrder, etOrder1, refundPercentage);
|
||||
log.info("【合伙人退款】:总金额【{}】", totalPartnerDividend);
|
||||
|
|
|
@ -34,6 +34,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="status != null and status != ''"> and status = #{status}</if>
|
||||
<if test="lockStatus != null and lockStatus != ''"> and lock_status = #{lockStatus}</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectEtLocationLogListByCreateTime" parameterType="EtLocationLog" resultMap="EtLocationLogResult">
|
||||
|
|
|
@ -39,6 +39,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="areaId != null and areaId != ''"> and m.area_id = #{areaId}</if>
|
||||
<!-- 数据范围过滤 -->
|
||||
${params.dataScope}
|
||||
order by m.create_time desc
|
||||
</select>
|
||||
|
||||
<select id="selectEtModelByModelId" parameterType="Long" resultMap="EtModelResult">
|
||||
|
|
Loading…
Reference in New Issue
Block a user