1.太米支付

This commit is contained in:
邱贞招 2024-09-24 22:10:33 +08:00
parent 589c0b3435
commit 985abf1fad
2 changed files with 36 additions and 2 deletions

View File

@ -117,6 +117,7 @@ public class WxPayService implements IWxPayService {
throw new ServiceException("运营商【"+sysDept.getDeptName()+"】没有支付渠道");
}
ChannelVO channelVO = etChannelService.selectSmChannelByChannelId(payChannel);
log.info("支付渠道------"+JSON.toJSON(channelVO));
String outTradeNo = null;
if(PayChannel.CT_WX.equalsCode(channelVO.getCode()) || PayChannel.YS_WX.equalsCode(channelVO.getCode())){
outTradeNo = IdUtils.getOrderNo("wx");
@ -145,7 +146,6 @@ public class WxPayService implements IWxPayService {
request.setMchid(channelVO.getMerchantId());
request.setAttach(JSON.toJSONString(new AttachVo(payType,user.getUserId(), "")));
request.setDescription(description);
log.info("支付渠道------"+JSON.toJSON(channelVO));
request.setNotifyUrl(channelVO.getNotifyUrl());
request.setPayer(getPayer(user.getWxopenid()));
JsapiServiceExtension jsapiServiceExtension = getJsapiServiceExtension(channelVO);

View File

@ -22,7 +22,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
sc.private_key_path,
sc.merchant_serial_number,
sc.refund_notify_url,
sc.appid
sc.appid,
sc.developer_id,
sc.shop_id,
sc.http_url,
sc.sign_key,
sc.sn
from et_channel sc
</sql>
@ -58,6 +63,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="enabled != null">enabled,</if>
<if test="costRate != null">cost_rate,</if>
<if test="picture != null">picture,</if>
<if test="merchantId != null">merchant_id,</if>
<if test="apiV3Key != null">api_v3_key,</if>
<if test="notifyUrl != null">notify_url,</if>
<if test="privateKeyPath != null">private_key_path,</if>
<if test="merchantSerialNumber != null">merchant_serial_number,</if>
<if test="refundNotifyUrl != null">refund_notify_url,</if>
<if test="appid != null">appid,</if>
<if test="developerId != null">developer_id,</if>
<if test="shopId != null">shop_id,</if>
<if test="httpUrl != null">http_url,</if>
<if test="signKey != null">sign_key,</if>
<if test="sn != null">sn,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="channelId != null">#{channelId},</if>
@ -66,6 +83,18 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="enabled != null">#{enabled},</if>
<if test="costRate != null">#{costRate},</if>
<if test="picture != null">#{picture},</if>
<if test="merchantId != null">#{merchantId},</if>
<if test="apiV3Key != null">#{apiV3Key},</if>
<if test="notifyUrl != null">#{notifyUrl},</if>
<if test="privateKeyPath != null">#{privateKeyPath},</if>
<if test="merchantSerialNumber != null">#{merchantSerialNumber},</if>
<if test="refundNotifyUrl != null">#{refundNotifyUrl},</if>
<if test="appid != null">#{appid},</if>
<if test="developerId != null">#{developerId},</if>
<if test="shopId != null">#{shopId},</if>
<if test="httpUrl != null">#{httpUrl},</if>
<if test="signKey != null">#{signKey},</if>
<if test="sn != null">#{sn},</if>
</trim>
</insert>
@ -84,6 +113,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="data.merchantSerialNumber != null">merchant_serial_number = #{data.merchantSerialNumber},</if>
<if test="data.refundNotifyUrl != null">refund_notify_url = #{data.refundNotifyUrl},</if>
<if test="data.appid != null">appid = #{data.appid},</if>
<if test="data.developerId != null">developer_id = #{data.developerId},</if>
<if test="data.shopId != null">shop_id = #{data.shopId},</if>
<if test="data.httpUrl != null">http_url = #{data.httpUrl},</if>
<if test="data.signKey != null">sign_key = #{data.signKey},</if>
<if test="data.sn != null">sn = #{data.sn},</if>
</trim>
where channel_id = #{data.channelId}
</update>