|
@@ -193,6 +193,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 +222,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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|