微信商户退款

微信退款

	开发需求遇到需要给用户退款,个人在开发中碰到很多小坑,个人记录以免再碰到
	
	[微信退款文档](https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=9_4)

@Data
public class Refund{

	String orderId; 微信支付商户返回id
	String id;   自己后台生成的id
	BigDecimal fee; 退款金额

}

public class RefundUtil{
	@Value("${wechat.certificate.refund}")
    private String WECHAT_REFUND_VERIFY_FILE_PATH;
    @Value("${wechat.certificate.appid}")
    private String APPID;
    @Value("${wechat.certificate.mchid}")
    private String MCHID;
    @Value("${wechat.certificate.key}")
    private String KEY;

    private final static String WECHAT_REFUND_URL = "https://api.mch.weixin.qq.com/secapi/pay/refund";
    
	public ResponseEntity refundOperation(Refund refund) throws Exception {
			Map<String, String> params= new HashMap<>();
			//生成32位字符串
            String nonce_str = codeUtil.UUID().toUpperCase();
            params.put("appid", APPID);
            params.put("mch_id", MCHID);
            params.put("nonce_str", nonce_str);
            params.put("out_trade_no", refund.getOrderId());// 微信返回的交易订单号
            params.put("out_refund_no", refund.getId());
            params.put("op_user_id", MCHID);
            params.put("total_fee", fee); // 金额(分)
            params.put("refund_fee", fee); // 金额(分)
            String sign = WXPayUtil.generateSignature(params, KEY);
            params.put("sign", sign);
            String requestXML = WXPayUtil.mapToXml(params);
            String xmlResult = getWeixinVerify(WECHAT_REFUND_URL, requestXML, WECHAT_REFUND_VERIFY_FILE_PATH);
            Map<String, String> mapResult = WXPayUtil.xmlToMap(xmlResult);
	}
	
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值