/// <summary> ///优卡联盟查询接口 /// </summary> /// <param name="orderid">订单号</param> /// <param name="callBackurl">返回地址</param> private void SendDoQuery() { if (!String.IsNullOrEmpty(Request.Form["orderid"].ToString())) { PayOrderController ent = new PayOrderController(); Dictionary <string, object> conditions2 = new Dictionary <string, object>(); String orderid = Request.Form["orderid"]; conditions2.Add("OrderID", orderid); var r = ent.PayOrderGet(conditions2); Literal1.Text = ""; if (r == 1) { Literal1.Text = "充值中"; } if (r == 2) { Literal1.Text = "充值成功"; } if (r == 3) { Literal1.Text = "充值失败"; } if (r == -1) { Literal1.Text = "订单不存在"; } PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "2"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } var md5str = "skey=qysopen8899&rtype=1004&paymoney=0.1&goodsname=1&buyCount=100&BackCount=1&account=qylw003&OrderID=2017042912072786"; var mdgetstr = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(md5str, "MD5"); } }
protected void Page_Load(object sender, EventArgs e) { try { //返回参数 String opstate = Request["opstate"]; //返回处理结果 String orderid = Request["orderid"]; //返回商户订单号 String ovalue = Request["ovalue"]; //返回实际充值金额 String sign = Request["sign"]; //返回签名 String sysorderid = Request["sysorderid"]; //录入时产生流水号。 String systime = Request["systime"]; //处理时间。 String attach = Request["attach"]; //上行附加信息 String msg = Request["msg"]; //返回订单处理消息 String param = String.Empty; //InsertLog(orderid, cardno, opstate, ovalue, attach, sign); param = String.Format("orderid={0}&opstate={1}&ovalue={2}{3}", orderid, opstate, ovalue, userkey);//组织参数 //比对签名是否有效 if (sign.Equals(md5.MD5(param).ToLower())) { //执行操作方法 if (opstate.Equals("0")) { //Response.Write("opstate=0"); //操作流程成功的情况 //此处执行商户订单处理逻辑 PayOrderController ent = new PayOrderController(); Dictionary <string, object> conditions2 = new Dictionary <string, object>(); conditions2.Add("OrderID", orderid); conditions2.Add("ErrorCode", ""); conditions2.Add("PayState", "2"); int result = ent.PayOrderEdit(conditions2); PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "2"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } // Response.Write("opstate=0&充值成功"); Response.Redirect("payok.aspx"); } else if (opstate.Equals("1")) { PayOrderController ent = new PayOrderController(); PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "3"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } //卡号密码错误 // Response.Write("opstate=1&数据接收成功"); Response.Redirect("payfail.aspx"); } else if (opstate.Equals("2")) { PayOrderController ent = new PayOrderController(); PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "3"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } //卡实际面值和提交时面值不符,卡内实际面值未使用 //Response.Write("opstate=2&系统不支持该类卡进行支付"); Response.Redirect("payfail.aspx"); } else if (opstate.Equals("3")) { PayOrderController ent = new PayOrderController(); PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "3"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } //卡在提交之前已经被使用 //Response.Write("opstate=3&签名验证串错误"); Response.Redirect("payfail.aspx"); } else if (opstate.Equals("4")) { PayOrderController ent = new PayOrderController(); PayOrder getmodel = ent.PayOrderArr(orderid); if (getmodel != null) { getmodel.PayState = "3"; getmodel.OrderID = orderid; NotiSerController.NotiChongZhi(getmodel); } //失败,原因请查看msg // Response.Write("opstate=4&订单内容重复"); Response.Redirect("payfail.aspx"); } } else { //签名无效 Response.Write("签名无效"); } } catch { } }
protected void Page_Load(object sender, EventArgs e) { try { //返回参数 String shop_id = Request["shop_id"]; //商户ID String order_no = Request["order_no"]; //订单流水号 String amount = Request["amount"]; //金额 String sign = Request["sign"]; //返回签名 String state = Request["state"]; //支付状态 0:支付失败;1:支付成功 String param = String.Empty; param = String.Format("{0}{1}{2}", shop_id, amount, appkey); //组织参数 //比对签名是否有效 if (sign.Trim().ToLower().Equals(md5.MD5(param).ToLower())) { PayOrderController ent = new PayOrderController(); PayOrder getmodel = ent.PayOrderArrByChannel(order_no); //执行操作方法 if (state.Trim().Equals("1")) { Dictionary <string, object> conditions2 = new Dictionary <string, object>(); conditions2.Add("OrderID", getmodel.OrderID); conditions2.Add("ErrorCode", ""); conditions2.Add("PayState", "2"); int result = ent.PayOrderEdit(conditions2); if (getmodel != null) { getmodel.PayState = "2"; getmodel.OrderID = getmodel.OrderID; NotiSerController.NotiChongZhi(getmodel); } Response.Write("SUCCESS"); } else { Dictionary <string, object> conditions2 = new Dictionary <string, object>(); conditions2.Add("OrderID", getmodel.OrderID); conditions2.Add("ErrorCode", "支付失败"); conditions2.Add("PayState", "3"); int result = ent.PayOrderEdit(conditions2); if (getmodel != null) { getmodel.PayState = "3"; getmodel.OrderID = getmodel.OrderID; NotiSerController.NotiChongZhi(getmodel); } Response.Write("SUCCESS"); } } else { //签名无效 Response.Write("签名无效"); } } catch { } }