|
@@ -240,6 +240,7 @@ namespace MySystem
|
|
|
// 减去自己付的订单
|
|
|
// CurDiviPersons = CurDiviPersons - 1;
|
|
|
int OutCount = 0; // 出局人数
|
|
|
+ List<int> orderids = new List<int>();
|
|
|
while (CurDiviPersons > 0)
|
|
|
{
|
|
|
ConsumerOrders suborder = RedisDbconn.Instance.RPop<ConsumerOrders>("ConsumerOrders:Divi:" + PayMode + ":" + MerchantId);
|
|
@@ -282,13 +283,17 @@ namespace MySystem
|
|
|
}).Entity;
|
|
|
db.SaveChanges();
|
|
|
MerchantAddInfo merchantAdd = db.MerchantAddInfo.FirstOrDefault(m => m.Id == suborder.MerchantId) ?? new MerchantAddInfo();
|
|
|
- if(order.PayMode == 1)
|
|
|
+ if(!orderids.Contains(suborder.Id))
|
|
|
{
|
|
|
- AlipayFunction.Instance.Refund(suborder.SeoTitle, Math.Round(GetMoney, 2).ToString(), "门店分红", merchantAdd.AlipayAuthToken);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- Dictionary<string, string> dic = WeChatFunction.Instance.Refund(merchantAdd.SubMchid, Math.Round(GetMoney, 2), suborder.PayMoney, suborder.OrderNo, DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), "门店分红");
|
|
|
+ if(order.PayMode == 1)
|
|
|
+ {
|
|
|
+ AlipayFunction.Instance.Refund(suborder.SeoTitle, Math.Round(GetMoney, 2).ToString(), "门店分红", merchantAdd.AlipayAuthToken);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Dictionary<string, string> dic = WeChatFunction.Instance.Refund(merchantAdd.SubMchid, Math.Round(GetMoney, 2), suborder.PayMoney, suborder.OrderNo, DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), "门店分红");
|
|
|
+ }
|
|
|
+ orderids.Add(suborder.Id);
|
|
|
}
|
|
|
merchant.ActCurrentAmount += Math.Round(GetMoney, 2); //活动已返金额
|
|
|
db.SaveChanges();
|