Sfoglia il codice sorgente

每一轮退款保证每笔历史订单只退一次

lcl 1 anno fa
parent
commit
468358ee0a
2 ha cambiato i file con 13 aggiunte e 8 eliminazioni
  1. 11 6
      AppStart/Helper/Profit/ProfitHelper.cs
  2. 2 2
      Startup.cs

+ 11 - 6
AppStart/Helper/Profit/ProfitHelper.cs

@@ -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();

+ 2 - 2
Startup.cs

@@ -195,8 +195,8 @@ namespace MySystem
                 ActiveRewardService.Instance.StartLeaderReward();
                 ActiveRewardService.Instance.StartOperateReward();
 
-                MerchantStandardService.Instance.Start(); //商户缴纳服务费次月活动交易额大于等于1W,奖励进件创客50元
-                MerchantStandardService.Instance.StartThree(); //商户缴纳服务费次月起连续不间断三个月,每月活动交易额大于1W,奖励进件创客100元
+                // MerchantStandardService.Instance.Start(); //商户缴纳服务费次月活动交易额大于等于1W,奖励进件创客50元
+                // MerchantStandardService.Instance.StartThree(); //商户缴纳服务费次月起连续不间断三个月,每月活动交易额大于1W,奖励进件创客100元
             }
             // HaoDaExtHelper.Instance.StartWeChat();
             // HaoDaExtHelper.Instance.StartAlipay();