C# 微支付退款申请接口 V3.3.6

/// <summary>
/// 微支付退款申请
/// </summary>
/// <param name="context"></param>
/// <param name="returnMsg"></param>
/// <returns></returns>
public bool Refund(HttpContext context, ref string returnMsg)
{
int UID = 0;
string WXO_Remark = "";//退款说明
if (string.IsNullOrEmpty(context.Session["UID"] as string))
{
returnMsg = "请登录!";
return false;
}
UID = Convert.ToInt32(context.Session["UID"]); //当前用户

int Oid = Convert.ToInt32(context.Request["OID"].Trim()); //订单ID
model = modelBll.GetModel(Oid); //订单实体
Decimal refund;
if (context.Request["Refund"].Length > 0)
{
bool state = Decimal.TryParse(context.Request["Refund"].Trim(), out refund);
if(!state)
{
returnMsg = "请输入正确的退款金额!";
return false;
}
}
else
{
returnMsg = "请输入退款金额!";
return false;
}
if(refund > model.WXO_PRealPrice)
{
returnMsg = "输入错误,退款金额不得大于总金额!";
return false;
}

string Nonce = CreateRandomCode(15).ToLower(); //生成15个随机字符
string sign1 = "appid=" + CommonApi.AppID.ToString()+ //微信公众号的APPID
"&mch_id=" + CommonApi.MechID.ToString() + //商户号
"&nonce_str=" + Nonce + //随机字符串
"&op_user_id=" + CommonApi.MechID.ToString() + //用户(默认商户号)
"&out_refund_no=" + model.WXO_ORefundCode + //商户退款单号
"&out_trade_no=" + model.WXO_OCode + //商户单号
"&refund_fee=" + Convert.ToInt32(( refund*100 )) + //退款金额
"&total_fee=" + Convert.ToInt32((model.WXO_PRealPrice * 100)); //订单总金额
string sign2 = sign1 + "&key="+ CommonApi.PayKey.ToString(); //商户的Key
string sign = T9.Util.EncryptUtil.md5(sign2, 32).ToUpper(); //MD5加密

string URL = "https://api.mch.weixin.qq.com/secapi/pay/refund";
string RequstContext = "<xml>" +
"<appid><![CDATA["+CommonApi.AppID.ToString()+"]]></appid>" +
"<mch_id><![CDATA["+CommonApi.MechID.ToString()+"]]></mch_id>" +
"<nonce_str><![CDATA["+Nonce+"]]></nonce_str>" +
"<sign><![CDATA["+sign+"]]></sign>" +
"<out_trade_no><![CDATA["+model.WXO_OCode+"]]></out_trade_no>" +
"<out_refund_no><![CDATA["+model.WXO_ORefundCode+"]]></out_refund_no>" +
"<total_fee>"+ Convert.ToInt32((model.WXO_PRealPrice * 100 )) +"</total_fee>" +
"<refund_fee>"+ Convert.ToInt32((refund * 100 )) +"</refund_fee>" +
"<op_user_id><![CDATA["+CommonApi.MechID.ToString()+"]]></op_user_id>" +
"</xml>";
string WXRefund = SendInfoWithCa(URL, RequstContext); //调用发送方法

XmlDocument doc = new XmlDocument();
doc.LoadXml(WXRefund);
XmlElement rootElement = doc.DocumentElement;
string Code = rootElement.SelectSingleNode("return_code").InnerText; //协议级判断
if (Code == "SUCCESS") //协议级验证
{
string result_code = rootElement.SelectSingleNode("result_code").InnerText;
if (result_code == "SUCCESS")//业务级验证
{
return true;
}
else
{
returnMsg = "出现未知的错误,请联系管理员!";
return false;
}
}
else
{
returnMsg = "出现未知的错误,请联系管理员!";
return false;
}
}
/// <summary>
/// 生成随机字符串
/// </summary>
/// <param name="codeCount"></param>
/// <param name="allChar"></param>
/// <returns></returns>
public static string CreateRandomCode(int codeCount)
{
//验证码中的出现的字符,避免了一些容易混淆的字符。
string allChar = "3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,J,K,M,N,P,Q,R,S,T,U,W,X,Y";
string[] allCharArray = allChar.Split(',');
string randomCode = "";
int temp = -1;
bool breCreate = (codeCount < 6 && allCharArray.Length > 15);

Random rand = new Random();
for (int i = 0; i < codeCount; i++)
{
if (temp != -1)
{
rand = new Random(i * temp * ((int)DateTime.Now.Ticks));
}
int t = rand.Next(allCharArray.Length);
if (temp == t && breCreate)
{
return CreateRandomCode(codeCount);
}
temp = t;
randomCode += allCharArray[t];
}
return randomCode;
}
#region 向微信服务器发送信息通过证书认证
/// <summary>
/// 向微信服务器发送信息通过证书认证
/// </summary>
/// <param name="posturl">请求路径</param>
/// <param name="postData">请求参数</param>
/// <returns>返回信息</returns>
public string SendInfoWithCa(string posturl, string postData)
{
Stream outstream = null;
Stream instream = null;
StreamReader sr = null;
HttpWebResponse response = null;
HttpWebRequest request = null;
Encoding encoding = Encoding.UTF8;
byte[] data = encoding.GetBytes(postData);
// 准备请求...
try
{
string cert = @"D:\***\**\apiclient_cert.p12"; //证书路径(此证书必须安装)
string password = "***"; //证书密码
ServicePointManager.ServerCertificateValidationCallback=new RemoteCertificateValidationCallback(CheckValidationResult);
X509Certificate cer = new X509Certificate(cert, password);
// 设置参数
request = WebRequest.Create(posturl) as HttpWebRequest;
request.ClientCertificates.Add(cer);
CookieContainer cookieContainer = new CookieContainer();
request.CookieContainer = cookieContainer;
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = data.Length;
outstream = request.GetRequestStream();
outstream.Write(data, 0, data.Length);
outstream.Close();
//发送请求并获取相应回应数据
request.KeepAlive = false;
response = request.GetResponse() as HttpWebResponse;
//直到request.GetResponse()程序才开始向目标网页发送Post请求
instream = response.GetResponseStream();
sr = new StreamReader(instream, encoding);
//返回结果网页(html)代码
string content = sr.ReadToEnd();
string err = string.Empty;
return content;
}
catch (Exception ex)
{
T9.Util.LogUtil.WriteLog(ex.Message + "\r\n" + ex.StackTrace, "WebLog");
return string.Empty;
}
}
#region CheckValidationResult的定义
/// <summary>
/// CheckValidationResult的定义
/// </summary>
/// <param name="sender"></param>
/// <param name="certificate"></param>
/// <param name="chain"></param>
/// <param name="errors"></param>
/// <returns></returns>
private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
{
if (errors == SslPolicyErrors.None)
{
return true;
}
return false;
}

转载于:https://www.cnblogs.com/a-mumu/p/4152733.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/259630.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转] 英语、计算机、互联网与全球化

http://davidzhao.blog.51cto.com/4548102/1225732 转载于:https://www.cnblogs.com/wowk/p/3169638.html

APNIC IP 库

http://ftp.apnic.net/apnic/stats/apnic/delegated-apnic-latest转载于:https://www.cnblogs.com/dlwj/p/6388162.html

java reference 传引用_Java的引用(reference)---Roni

摘自《Java面向对象编程》一书,作者:孙卫琴 来源:www.javathinker.org在JDK1.2以前的版本中&#xff0c;当一个对象不被任何变量引用&#xff0c;那么程序就无法再使用这个对象。也就是说&#xff0c;只有对象处于可触及状态&#xff0c;程序才能使用它。这就像在日常生活中&am…

C# 以管理员身份运行程序

刚看了一篇博友写的“以管理员身份运行程序”, 所以我也来写一个简单易懂的&#xff0c;简单两步搞定&#xff0c;不用写任何代码&#xff1a; 第一步&#xff1a; 右键选择项目 > 添加 > 新建项 &#xff1b; 找到 应用程序清单文件&#xff0c;后缀名为manifest&#x…

会计转行从事IT,如何在一年时间内全职学习?

2019独角兽企业重金招聘Python工程师标准>>> https://www.zhihu.com/question/21427478/answer/18227060 转载于:https://my.oschina.net/soho00147/blog/836138

VS2010中使用CL快速 生成DLL的方法

方案一&#xff1a; 1、命令行中输入cl example.cpp&#xff0c;生成example.obj和example.lib文件。有可能还会提示“没有入口点”的错误。这是因为我们的CPP中是要生成dll文件的&#xff0c;并没有main()这样的主函数作为入口点。如果是C文件&#xff0c;则输入cl /c exampl…

java field 获得值_反射通用获取字段值

像之前回答的那样&#xff0c;您应该使用&#xff1a;Object value field.get(objectInstance);有时更喜欢的另一种方法是动态调用getter。示例代码&#xff1a;public static Object runGetter(Field field, BaseValidationObject o){// MZ: Find the correct methodfor (Met…

android 中如何模拟back键

主要是在使用Fragment时能够返回前一级&#xff0c;所以才找到了这些资料。 有两种方式可以实现&#xff0c;直接上代码 方法1&#xff1a; public void onBack(){new Thread(){public void run() {try{Instrumentation inst new Instrumentation();inst.sendKeyDownUpSync(Ke…

如何生成后缀表达式

如果计算一个表达式&#xff0c;比如 456*2&#xff0c;随着计算器的不同&#xff0c;简单的四功能计算器是30&#xff0c;许多科学计算器知道乘法的优先级高于加法&#xff0c;所以科学答案是21。典型计算顺序可以是计算45&#xff0c;存为临时变量a&#xff0c;再计算6*2&…

【原生JS插件】LoadingBar页面顶部加载进度条

先展示一下已经实现的效果&#xff1a; 预览地址&#xff1a;http://dtdxrk.github.io/js-plug/LoadingBar/index.html 看到手机上的浏览器内置了页面的加载进度条&#xff0c;想用在pc上。 网上搜了一下&#xff0c;看到几种页面loading的方法&#xff1a; 1.在body头部加入lo…

qtp启动java程序_转: QTP六脉神剑之调用Java程序

查看( 1147 ) /评论( 21 )六脉神剑之调用程序0Xp1zLN_0版权声明&#xff1a;原创作品&#xff0c;转载请以链接方式注明出自http://www.51testing.com/?35&#xff0c;否则将追究法律责任。51Testing软件测试网y|X,taS51Testing软件测试网b;|w6I"g6oK本文出自songfun的51…

Linq 数据库操作(增删改查)

Linq数据库增删改查 Linq是一种查询语言&#xff0c;集成包含在formwork中&#xff0c;包含在C#语言中&#xff0c;它的作用是降低查询的门槛&#xff0c;提高开发效率&#xff0c;是我们必须掌握的技术之一&#xff0c;下面是我自己对linq数据库操作的方法&#xff0c;与大家…

第八章 Python 对象和类

一、什么是对象 在 Pyth 中&#xff0c;对象就是经过实例化的&#xff0c;具体可以操作的一组代码的组合&#xff1b; 对象一般包含数据&#xff08;变量&#xff0c;更习惯称之为属性 attribute&#xff09;&#xff0c;也包含代码&#xff08;函数&#xff0c;也称之为方法&a…

JS同名方法,

JS同名方法只会调用最后一个方法。 JS中同时绑定多个事件&#xff0c;先绑定的先调用。后绑定的后调用。转载于:https://www.cnblogs.com/daishuguang/p/4169718.html

Spring WebSocket初探2 (Spring WebSocket入门教程)

2019独角兽企业重金招聘Python工程师标准>>> WebSocket前端准备 SockJS&#xff1a; SockJS 是一个浏览器上运行的 JavaScript 库&#xff0c;如果浏览器不支持 WebSocket&#xff0c;该库可以模拟对 WebSocket 的支持&#xff0c;实现浏览器和 Web 服务器之间低延迟…

软件测试相关概念与分类

这是我看了有关软件测试的书的一些归纳与总结。 软件测试的核心是发现软件中的缺陷。测试是对软件质量的度量。 一、缺陷 缺陷&#xff0c;目前没有标准定义 。与缺陷相关的一组定义就有&#xff1a;软件错误、软件缺陷、软件故障、软件失效。 软件错误&#xff1a;在软件生存周…

excel SUBTOTAL函数使用详解

转自&#xff1a;http://www.kuqin.com/shuoit/20110524/91710.html 今天用Excel在进行业务统计时&#xff0c;遇到一个小问题&#xff0c;Google了一下&#xff0c;又学了一招。 一般人都会使用“自动筛选”功能&#xff0c;筛选完成后&#xff0c;会在表格左下角的状态栏中提…

java九宫格问题课程设计_课程设计九宫格数独.doc

课程设计九宫格数独中南民族大学管理学院学生课程设计报告课题名称&#xff1a; java课程设计选题名称&#xff1a; 九宫格数独年 级&#xff1a; 2009专 业&#xff1a; 信息管理与信息系统学 号&#xff1a;姓 名&#xff1a;指导教师&#xff1a;完成地点&#xff1a; 管理学…

Scrapy使用问题整理(转载)

转载自&#xff1a;http://blog.csdn.net/heu07111121/article/details/50832999最近尝试使用Scrapy进行数据抓取&#xff0c;并尝试在windows7 64位系统上安装scrapy&#xff0c;下面总结记录遇到两个问题和解决方法&#xff1a;scrapy官网的地址为&#xff1a;http://scrapy.…

英文Ubantu系统安装中文输入法

以前都是安装的中文Ubantu&#xff0c;但是有时候用命令行的时候中文识别不好&#xff0c;会出现错误&#xff0c;所以这次安装了英文版&#xff0c;但是安装后发现输入法不好用&#xff0c;于是就要自己安装输入法。 安装环境为Ubantu13.04 1.卸载Ubantu默认的ibus输入法 sudo…