This commit is contained in:
邱贞招 2024-09-14 11:24:58 +08:00
parent 9517fffcd8
commit be2091afa7
4 changed files with 120 additions and 102 deletions

View File

@ -85,26 +85,26 @@ public class SysDept extends BaseEntity
/** 余额 */ /** 余额 */
private BigDecimal balance; private BigDecimal balance;
/** appSecret */ // /** appSecret */
private String appSecret; // private String appSecret;
//
/** merchantId */ // /** merchantId */
private String merchantId; // private String merchantId;
//
/** apiV3Key */ // /** apiV3Key */
private String apiV3Key; // private String apiV3Key;
//
/** 通知回调地址 */ // /** 通知回调地址 */
private String notifyUrl; // private String notifyUrl;
//
/** 密钥所在位置 */ // /** 密钥所在位置 */
private String privateKeyPath; // private String privateKeyPath;
//
/** 证书序列号 */ // /** 证书序列号 */
private String merchantSerialNumber; // private String merchantSerialNumber;
//
/** 退款回调地址 */ // /** 退款回调地址 */
private String refundNotifyUrl; // private String refundNotifyUrl;
/** app用户id,用于提现,发送短信 */ /** app用户id,用于提现,发送短信 */
private Long appUserId; private Long appUserId;
@ -281,61 +281,61 @@ public class SysDept extends BaseEntity
this.appid = appid; this.appid = appid;
} }
public String getAppSecret() { // public String getAppSecret() {
return appSecret; // return appSecret;
} // }
//
public void setAppSecret(String appSecret) { // public void setAppSecret(String appSecret) {
this.appSecret = appSecret; // this.appSecret = appSecret;
} // }
//
public String getMerchantId() { // public String getMerchantId() {
return merchantId; // return merchantId;
} // }
//
public void setMerchantId(String merchantId) { // public void setMerchantId(String merchantId) {
this.merchantId = merchantId; // this.merchantId = merchantId;
} // }
//
public String getApiV3Key() { // public String getApiV3Key() {
return apiV3Key; // return apiV3Key;
} // }
//
public void setApiV3Key(String apiV3Key) { // public void setApiV3Key(String apiV3Key) {
this.apiV3Key = apiV3Key; // this.apiV3Key = apiV3Key;
} // }
//
public String getNotifyUrl() { // public String getNotifyUrl() {
return notifyUrl; // return notifyUrl;
} // }
//
public void setNotifyUrl(String notifyUrl) { // public void setNotifyUrl(String notifyUrl) {
this.notifyUrl = notifyUrl; // this.notifyUrl = notifyUrl;
} // }
//
public String getPrivateKeyPath() { // public String getPrivateKeyPath() {
return privateKeyPath; // return privateKeyPath;
} // }
//
public void setPrivateKeyPath(String privateKeyPath) { // public void setPrivateKeyPath(String privateKeyPath) {
this.privateKeyPath = privateKeyPath; // this.privateKeyPath = privateKeyPath;
} // }
//
public String getMerchantSerialNumber() { // public String getMerchantSerialNumber() {
return merchantSerialNumber; // return merchantSerialNumber;
} // }
//
public void setMerchantSerialNumber(String merchantSerialNumber) { // public void setMerchantSerialNumber(String merchantSerialNumber) {
this.merchantSerialNumber = merchantSerialNumber; // this.merchantSerialNumber = merchantSerialNumber;
} // }
//
public String getRefundNotifyUrl() { // public String getRefundNotifyUrl() {
return refundNotifyUrl; // return refundNotifyUrl;
} // }
//
public void setRefundNotifyUrl(String refundNotifyUrl) { // public void setRefundNotifyUrl(String refundNotifyUrl) {
this.refundNotifyUrl = refundNotifyUrl; // this.refundNotifyUrl = refundNotifyUrl;
} // }
public Long[] getAreaIds() { public Long[] getAreaIds() {
return areaIds; return areaIds;

View File

@ -355,4 +355,7 @@ public class EtOrder extends BaseEntity
@Excel(name = "描述") @Excel(name = "描述")
private String description; private String description;
/** 支付渠道 */
public Long payChannel;
} }

View File

@ -121,10 +121,6 @@ public class WxPayService implements IWxPayService {
EtOrder order1 = new EtOrder(); EtOrder order1 = new EtOrder();
order1.setOutTradeNo(outTradeNo); order1.setOutTradeNo(outTradeNo);
order1.setOrderId(order.getOrderId()); order1.setOrderId(order.getOrderId());
int updateEtOrder = etOrderService.updateEtOrder(order1);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}
Long payChannel = sysDept.getPayChannel(); Long payChannel = sysDept.getPayChannel();
if(ObjectUtil.isNull(payChannel)){ if(ObjectUtil.isNull(payChannel)){
@ -132,25 +128,32 @@ public class WxPayService implements IWxPayService {
} }
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel);
order1.setPayChannel(payChannel);
int updateEtOrder = etOrderService.updateEtOrder(order1);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){ if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
log.info("----------{}-------------","微信官方支付"); log.info("----------{}-------------","微信官方支付");
PrepayRequest request = new PrepayRequest(); PrepayRequest request = new PrepayRequest();
request.setAmount(getAmount(order.getPayFee())); request.setAmount(getAmount(order.getPayFee()));
request.setOutTradeNo(outTradeNo); request.setOutTradeNo(outTradeNo);
request.setAppid(sysDept.getAppid()); request.setAppid(sysDept.getAppid());
request.setMchid(sysDept.getMerchantId()); request.setMchid(channelVO.getMerchantId());
request.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), ""))); request.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), "")));
request.setDescription(description); request.setDescription(description);
request.setNotifyUrl(sysDept.getNotifyUrl()); request.setNotifyUrl(channelVO.getNotifyUrl());
request.setPayer(getPayer(user.getWxopenid())); request.setPayer(getPayer(user.getWxopenid()));
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept); JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(channelVO);
PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request); PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request);
if(StrUtil.isNotBlank(order.getOutTradeNo())){ if(StrUtil.isNotBlank(order.getOutTradeNo())){
String tradeNo = order.getOutTradeNo(); String tradeNo = order.getOutTradeNo();
// 关闭订单 // 关闭订单
CloseOrderRequest closeOrderRequest = new CloseOrderRequest(); CloseOrderRequest closeOrderRequest = new CloseOrderRequest();
closeOrderRequest.setMchid(sysDept.getMerchantId()); closeOrderRequest.setMchid(channelVO.getMerchantId());
closeOrderRequest.setOutTradeNo(tradeNo); closeOrderRequest.setOutTradeNo(tradeNo);
jsapiServiceExtension.closeOrder(closeOrderRequest); jsapiServiceExtension.closeOrder(closeOrderRequest);
} }
@ -203,15 +206,16 @@ public class WxPayService implements IWxPayService {
EtOrder order1 = new EtOrder(); EtOrder order1 = new EtOrder();
order1.setOutTradeNo(outTradeNo); order1.setOutTradeNo(outTradeNo);
order1.setOrderId(order.getOrderId()); order1.setOrderId(order.getOrderId());
int updateEtOrder = etOrderService.updateEtOrder(order1);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}
Long payChannel = sysDept.getPayChannel(); Long payChannel = sysDept.getPayChannel();
if(ObjectUtil.isNull(payChannel)){ if(ObjectUtil.isNull(payChannel)){
throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道"); throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道");
} }
order1.setPayChannel(payChannel);
int updateEtOrder = etOrderService.updateEtOrder(order1);
if(updateEtOrder == 0){
throw new ServiceException("更新订单outTradeNo失败");
}
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel);
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){ if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
@ -220,10 +224,10 @@ public class WxPayService implements IWxPayService {
request.setAmount(getAmount(order.getPayFee())); request.setAmount(getAmount(order.getPayFee()));
request.setOutTradeNo(outTradeNo); request.setOutTradeNo(outTradeNo);
request.setAppid(sysDept.getAppid()); request.setAppid(sysDept.getAppid());
request.setMchid(sysDept.getMerchantId()); request.setMchid(channelVO.getMerchantId());
request.setAttach(JSON.toJSONString(new AttachVo(order.getType(),user.getUserId(), ""))); request.setAttach(JSON.toJSONString(new AttachVo(order.getType(),user.getUserId(), "")));
request.setDescription(description); request.setDescription(description);
request.setNotifyUrl(sysDept.getNotifyUrl()); request.setNotifyUrl(channelVO.getNotifyUrl());
request.setPayer(getPayer(user.getWxopenid())); request.setPayer(getPayer(user.getWxopenid()));
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept); JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(sysDept);
PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request); PrepayWithRequestPaymentResponse res = jsapiServiceExtension.prepayWithRequestPayment(request);
@ -232,7 +236,7 @@ public class WxPayService implements IWxPayService {
String tradeNo = order.getOutTradeNo(); String tradeNo = order.getOutTradeNo();
// 关闭订单 // 关闭订单
CloseOrderRequest closeOrderRequest = new CloseOrderRequest(); CloseOrderRequest closeOrderRequest = new CloseOrderRequest();
closeOrderRequest.setMchid(sysDept.getMerchantId()); closeOrderRequest.setMchid(channelVO.getMerchantId());
closeOrderRequest.setOutTradeNo(tradeNo); closeOrderRequest.setOutTradeNo(tradeNo);
jsapiServiceExtension.closeOrder(closeOrderRequest); jsapiServiceExtension.closeOrder(closeOrderRequest);
} }
@ -268,14 +272,14 @@ public class WxPayService implements IWxPayService {
} }
private JsapiServiceExtension getJsapiServiceExtension(SysDept sysDept) { private JsapiServiceExtension getJsapiServiceExtension(ChannelVO channelVO) {
// 初始化商户配置 // 初始化商户配置
Config config = new RSAAutoCertificateConfig.Builder() Config config = new RSAAutoCertificateConfig.Builder()
.merchantId(sysDept.getMerchantId()) .merchantId(channelVO.getMerchantId())
// 使用 com.wechat.pay.java.core.util 中的函数从本地文件中加载商户私钥商户私钥会用来生成请求的签名 // 使用 com.wechat.pay.java.core.util 中的函数从本地文件中加载商户私钥商户私钥会用来生成请求的签名
.privateKeyFromPath(sysDept.getPrivateKeyPath()) .privateKeyFromPath(channelVO.getPrivateKeyPath())
.merchantSerialNumber(sysDept.getMerchantSerialNumber()) .merchantSerialNumber(channelVO.getMerchantSerialNumber())
.apiV3Key(sysDept.getApiV3Key()) .apiV3Key(channelVO.getApiV3Key())
.build(); .build();
// 初始化服务 // 初始化服务
return new JsapiServiceExtension return new JsapiServiceExtension
@ -399,8 +403,8 @@ public class WxPayService implements IWxPayService {
public void refund(EtOrder etOrder,String reason,BigDecimal amount,String outRefundNo) { public void refund(EtOrder etOrder,String reason,BigDecimal amount,String outRefundNo) {
SysDept sysDept = getDeptObjByAreaId(etOrder.getAreaId()); SysDept sysDept = getDeptObjByAreaId(etOrder.getAreaId());
if(ObjectUtil.isNull(sysDept.getPayChannel())) throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道"); if(!etOrder.getStatus().equals(ServiceConstants.ORDER_STATUS_ORDER_END)) throw new ServiceException("订单状态异常");
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(sysDept.getPayChannel()); ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(etOrder.getPayChannel());
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){ if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
log.info("----------{}-------------","微信官方退款"); log.info("----------{}-------------","微信官方退款");

View File

@ -60,6 +60,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="handlingCharge" column="handling_charge" /> <result property="handlingCharge" column="handling_charge" />
<result property="platformServiceFee" column="platform_service_fee" /> <result property="platformServiceFee" column="platform_service_fee" />
<result property="operatorDividend" column="operator_dividend" /> <result property="operatorDividend" column="operator_dividend" />
<result property="payChannel" column="pay_channel" />
</resultMap> </resultMap>
<sql id="selectEtOrderVo"> <sql id="selectEtOrderVo">
@ -69,7 +70,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time, create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time,
rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url, rule_end_time, return_type, AsText(trip_route) trip_route,trip_route_str,cycle,deposit_deduction,video_url,
upload_time,deduction_amount,audio_files,used_sn,change_reason,locking,auto_refund_deposit,free_ride_time, upload_time,deduction_amount,audio_files,used_sn,change_reason,locking,auto_refund_deposit,free_ride_time,
rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, operator_dividend from et_order rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel
operator_dividend from et_order
</sql> </sql>
<sql id="selectEtOrderVoNoRoute"> <sql id="selectEtOrderVoNoRoute">
@ -77,8 +79,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
device_mac, sn, pay_time, paid, pay_type, type, total_fee, pay_fee, dispatch_fee, device_mac, sn, pay_time, paid, pay_type, type, total_fee, pay_fee, dispatch_fee,
manage_fee, riding_fee, appointment_fee, mark, duration, distance, status, manage_fee, riding_fee, appointment_fee, mark, duration, distance, status,
create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time, create_time, appointment_start_time, appointment_end_time,appointment_timeout, unlock_time,return_time,
rule_end_time, return_type, cycle,deposit_deduction,video_url,upload_time,deduction_amount,audio_files,used_sn,change_reason,locking,auto_refund_deposit,free_ride_time, rule_end_time, return_type, cycle,deposit_deduction,video_url,upload_time,deduction_amount,audio_files,
rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, operator_dividend from et_order used_sn,change_reason,locking,auto_refund_deposit,free_ride_time,
rental_unit,riding_rule,riding_rule_json,charging_cycle,charging_cycle_value,capped_amount,handling_charge, platform_service_fee, pay_channel
operator_dividend from et_order
</sql> </sql>
<select id="selectEtOrderList" parameterType="EtOrder" resultMap="EtOrderResult"> <select id="selectEtOrderList" parameterType="EtOrder" resultMap="EtOrderResult">
@ -132,7 +136,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
o.locking, o.locking,
o.handling_charge, o.handling_charge,
o.platform_service_fee, o.platform_service_fee,
o.operator_dividend o.operator_dividend,
o.pay_channel
FROM FROM
et_order o et_order o
LEFT JOIN LEFT JOIN
@ -230,7 +235,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
o.locking, o.locking,
o.handling_charge, o.handling_charge,
o.platform_service_fee, o.platform_service_fee,
o.operator_dividend o.operator_dividend,
o.pay_channel
FROM FROM
et_order o et_order o
LEFT JOIN LEFT JOIN
@ -316,6 +322,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
o.return_time, o.return_time,
o.rule_end_time, o.rule_end_time,
o.return_type, o.return_type,
o.pay_channel,
AsText(o.trip_route) trip_route, AsText(o.trip_route) trip_route,
o.trip_route_str from et_order o o.trip_route_str 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
@ -857,6 +864,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="chargingCycle != null">charging_cycle,</if> <if test="chargingCycle != null">charging_cycle,</if>
<if test="chargingCycleValue != null">charging_cycle_value,</if> <if test="chargingCycleValue != null">charging_cycle_value,</if>
<if test="cappedAmount != null">capped_amount,</if> <if test="cappedAmount != null">capped_amount,</if>
<if test="payChannel != null and payChannel != ''">pay_channel,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="orderId != null">#{orderId},</if> <if test="orderId != null">#{orderId},</if>
@ -901,6 +909,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="chargingCycle != null">#{chargingCycle},</if> <if test="chargingCycle != null">#{chargingCycle},</if>
<if test="chargingCycleValue != null">#{chargingCycleValue},</if> <if test="chargingCycleValue != null">#{chargingCycleValue},</if>
<if test="cappedAmount != null">#{cappedAmount},</if> <if test="cappedAmount != null">#{cappedAmount},</if>
<if test="payChannel != null and payChannel != ''">#{payChannel},</if>
</trim> </trim>
</insert> </insert>
@ -958,6 +967,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="handlingCharge != null">handling_charge = #{handlingCharge},</if> <if test="handlingCharge != null">handling_charge = #{handlingCharge},</if>
<if test="platformServiceFee != null">platform_service_fee = #{platformServiceFee},</if> <if test="platformServiceFee != null">platform_service_fee = #{platformServiceFee},</if>
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if> <if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
<if test="payChannel != null">pay_channel = #{payChannel},</if>
</trim> </trim>
where order_id = #{orderId} where order_id = #{orderId}
</update> </update>
@ -1016,6 +1026,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="handlingCharge != null">handling_charge = #{handlingCharge},</if> <if test="handlingCharge != null">handling_charge = #{handlingCharge},</if>
<if test="platformServiceFee != null">platform_service_fee = #{platformServiceFee},</if> <if test="platformServiceFee != null">platform_service_fee = #{platformServiceFee},</if>
<if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if> <if test="operatorDividend != null">operator_dividend = #{operatorDividend},</if>
<if test="payChannel != null">pay_channel = #{payChannel},</if>
</trim> </trim>
where order_no = #{orderNo} where order_no = #{orderNo}
</update> </update>