|
@@ -1,4 +1,4 @@
|
|
|
-using System;
|
|
|
+using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Linq;
|
|
|
using Aop.Api;
|
|
@@ -195,7 +195,7 @@ namespace MySystem
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- public string CreateTrade(string OrderNo, string Subject, decimal Amount, string BuyerId, string MerPid, string Notify_Url)
|
|
|
+ public string CreateTrade(string OrderNo, string Subject, decimal Amount, string BuyerId, string MerToken, string Notify_Url)
|
|
|
{
|
|
|
IAopClient client = new DefaultAopClient("https://openapi.alipay.com/gateway.do", AppId, PrivateKey, "json", "1.0", "RSA2", AlipayPublicKey, "utf-8", false);
|
|
|
AlipayTradeCreateRequest request = new AlipayTradeCreateRequest();
|
|
@@ -204,7 +204,7 @@ namespace MySystem
|
|
|
bizContent.Add("out_trade_no", OrderNo);
|
|
|
bizContent.Add("total_amount", Amount);
|
|
|
bizContent.Add("subject", Subject);
|
|
|
- // bizContent.Add("seller_id", MerPid);
|
|
|
+ // bizContent.Add("seller_id", "2088641405724089");
|
|
|
bizContent.Add("buyer_id", BuyerId);
|
|
|
bizContent.Add("timeout_express", "10m");
|
|
|
|
|
@@ -224,9 +224,9 @@ namespace MySystem
|
|
|
string result = "";
|
|
|
try
|
|
|
{
|
|
|
- AlipayTradeCreateResponse response = client.Execute(request, null, "202306BB117e046cfc29434c8f4acfd2a43aeX03");
|
|
|
+ AlipayTradeCreateResponse response = client.Execute(request, null, MerToken);
|
|
|
result = response.Body;
|
|
|
- function.WriteLog(DateTime.Now.ToString() + "\n" + result, "支付宝统一收单交易创建");
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + "\n" + Contentjson + "\n" + result, "支付宝统一收单交易创建");
|
|
|
}
|
|
|
catch (Exception ex)
|
|
|
{
|