|
@@ -180,12 +180,17 @@ namespace MySystem
|
|
|
{
|
|
|
string TradeNo = order.SeoTitle;
|
|
|
string OrderNo = order.OrderNo;
|
|
|
+ decimal hdfee = 0.0038M * order.PayMoney * (1 - set.GetPercent - 0.01M);
|
|
|
+ hdfee = decimal.Parse(hdfee.ToString("f2"));
|
|
|
+ decimal servicefee = 0.01M * order.PayMoney - hdfee;
|
|
|
+ servicefee = servicefee * 100;
|
|
|
+ int servicefeeNum = int.Parse(servicefee.ToString("f0"));
|
|
|
List<ReceiverList> Receivers = new List<ReceiverList>();
|
|
|
Receivers.Add(new ReceiverList()
|
|
|
{
|
|
|
type = "MERCHANT_ID", //分账接收方类型
|
|
|
account = WeChatFunction.Instance.MchId, //分账接收方账号
|
|
|
- amount = int.Parse(fee.ToString("f0")), //分账金额
|
|
|
+ amount = servicefeeNum, //分账金额
|
|
|
description = "服务费", //分账描述
|
|
|
});
|
|
|
LogHelper.Instance.WriteLog("TradeNo:" + TradeNo, "微信分账队列监听");
|
|
@@ -193,6 +198,8 @@ namespace MySystem
|
|
|
LogHelper.Instance.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(Receivers), "微信分账队列监听");
|
|
|
string ProfitShareResult = WeChatFunction.Instance.ProfitShare(merchantAdd.SubMchid, TradeNo, OrderNo, Receivers);
|
|
|
LogHelper.Instance.WriteLog("分账结果:" + ProfitShareResult, "微信分账队列监听");
|
|
|
+ order.DivideLog = "请求分账日志:" + ProfitShareResult;
|
|
|
+ db.SaveChanges();
|
|
|
|
|
|
//开始监听分账状态
|
|
|
Dictionary<string, object> req = new Dictionary<string, object>();
|
|
@@ -220,5 +227,78 @@ namespace MySystem
|
|
|
Thread.Sleep(2000);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ //触发分账接口
|
|
|
+ public void StartDivi()
|
|
|
+ {
|
|
|
+ Thread th = new Thread(ListenDivi);
|
|
|
+ th.IsBackground = true;
|
|
|
+ th.Start();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void ListenDivi()
|
|
|
+ {
|
|
|
+ bool op = true;
|
|
|
+ while (op)
|
|
|
+ {
|
|
|
+ string content = RedisDbconn.Instance.RPop<string>("AddWeChatDiviQueue");
|
|
|
+ if (!string.IsNullOrEmpty(content))
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ int id = int.Parse(function.CheckInt(content));
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ ConsumerOrders order = db.ConsumerOrders.FirstOrDefault(m => m.Id == id);
|
|
|
+ if (order != null)
|
|
|
+ {
|
|
|
+ MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantAddInfo();
|
|
|
+ MerchantParamSet set = db.MerchantParamSet.FirstOrDefault(m => m.Id == order.MerchantId) ?? new MerchantParamSet();
|
|
|
+ if (order.IsAct == 1 && order.PayMoney >= set.MinPayMoney)
|
|
|
+ {
|
|
|
+ //发起分账
|
|
|
+ decimal fee = order.PayMoney; //单位:分
|
|
|
+ if(fee >= 1)
|
|
|
+ {
|
|
|
+ string TradeNo = order.SeoTitle;
|
|
|
+ string OrderNo = order.OrderNo;
|
|
|
+ List<ReceiverList> Receivers = new List<ReceiverList>();
|
|
|
+ Receivers.Add(new ReceiverList()
|
|
|
+ {
|
|
|
+ type = "MERCHANT_ID", //分账接收方类型
|
|
|
+ account = WeChatFunction.Instance.MchId, //分账接收方账号
|
|
|
+ amount = int.Parse(fee.ToString("f0")), //分账金额
|
|
|
+ description = "服务费", //分账描述
|
|
|
+ });
|
|
|
+ LogHelper.Instance.WriteLog("TradeNo:" + TradeNo, "微信分账队列监听");
|
|
|
+ LogHelper.Instance.WriteLog("OrderNo:" + OrderNo, "微信分账队列监听");
|
|
|
+ LogHelper.Instance.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(Receivers), "微信分账队列监听");
|
|
|
+ string ProfitShareResult = WeChatFunction.Instance.ProfitShare(merchantAdd.SubMchid, TradeNo, OrderNo, Receivers);
|
|
|
+ LogHelper.Instance.WriteLog("分账结果:" + ProfitShareResult, "微信分账队列监听");
|
|
|
+ order.DivideLog = "请求分账日志:" + ProfitShareResult;
|
|
|
+ db.SaveChanges();
|
|
|
+
|
|
|
+ //开始监听分账状态
|
|
|
+ Dictionary<string, object> req = new Dictionary<string, object>();
|
|
|
+ req.Add("SubMchid", merchantAdd.SubMchid); //子商户号
|
|
|
+ req.Add("TradeNo", TradeNo); //微信订单号
|
|
|
+ req.Add("OrderNo", OrderNo); //商户订单号
|
|
|
+ RedisDbconn.Instance.AddList("ProfitShareQueue", Newtonsoft.Json.JsonConvert.SerializeObject(req));
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ db.Dispose();
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ LogHelper.Instance.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "补微信分账异常");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Thread.Sleep(2000);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|