.NET Core 微信小程序退款步骤(2)

注:注意退款接口的参数,如:金额,退款地址等,确保参数正确,一般微信会收到退款的请求指令,微信处理成功后,会异步回调退款的接口给服务器。

退款统一回调处理

直接上代码如下:

/// <summary> /// 退款回调 /// </summary> [HttpPost("RefundNotifyUrl")] public ActionResult RefundNotifyUrl() { ResponseResult result = new ResponseResult(); ResponseHandler resHandler = new ResponseHandler(HttpContext); string return_code = resHandler.GetParameter("return_code"); string return_msg = resHandler.GetParameter("return_msg"); try { var mch_key = Senparc.Weixin.Config.SenparcWeixinSetting.TenPayV3_Key; if (return_code.ToUpper() == "SUCCESS") { //string result_code = resHandler.GetParameter("result_code"); //string appId = resHandler.GetParameter("appid"); //string mch_id = resHandler.GetParameter("mch_id"); //string nonce_str = resHandler.GetParameter("nonce_str"); string req_info = resHandler.GetParameter("req_info"); var decodeReqInfo = TenPayV3Util.DecodeRefundReqInfo(req_info, mch_key); var decodeDoc = XDocument.Parse(decodeReqInfo); var refundNotifyXml = decodeDoc.SerializeObject(); //获取接口中需要用到的信息 string out_trade_no = decodeDoc.Root.Element("out_trade_no").Value; string out_refund_no = decodeDoc.Root.Element("out_refund_no").Value; string transaction_id = decodeDoc.Root.Element("transaction_id").Value; string refund_id = decodeDoc.Root.Element("refund_id").Value; int total_fee = int.Parse(decodeDoc.Root.Element("total_fee").Value); int refund_fee = int.Parse(decodeDoc.Root.Element("refund_fee").Value); RefundNotifyParam param = new RefundNotifyParam() { PayNo = out_trade_no,//商户订单号 PayPrice = ((float)refund_fee.ToInt() / 100).ToDecimal(),//退款金额 Out_refund_no = out_refund_no,//商户退款单号 TransactionNo = transaction_id,//微信订单号 Refund_id = refund_id, //微信退款单号 }; Logger.Info(string.Format("退款回调参数,return_code={0},return_msg={1},refundNotifyXml={2}", return_code, return_msg, refundNotifyXml)); result = Service.RefundNotifyUrl(param); if (result.errno != 0) { //回调处理逻辑失败 Logger.Error(string.Format("退款回调业务处理失败:退款单号{0},{1}", param.Out_refund_no, result.errmsg)); } else { Logger.Info(string.Format("退款回调业务处理成功,退款单号:{0}", param.Out_refund_no)); string xml = string.Format(@"<xml> <return_code><![CDATA[{0}]]></return_code> <return_msg><![CDATA[{1}]]></return_msg> </xml>", return_code, return_msg); return Content(xml, "text/xml"); } } else { //错误的订单处理 Logger.Error(string.Format("退款回调失败,return_code={0},return_msg={1}", return_code, return_msg)); } } catch (Exception ex) { Logger.Error(string.Format("退款回调异常:Message={0},StackTrace={1}", ex.Message, ex.StackTrace)); } return Content("fail", "text/xml"); }

注:如果业务处理退款成功后,请返回结果告诉微信SUCCESS,否则微信也会按规则不停发送退款回调给服务器,直到次数用完为止,具体查看上面规则文档。

总结

以上所述是小编给大家介绍的.NET Core 微信小程序退款步骤——(统一退款),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdswyg.html