Browse Source

重跑领导奖

lcl 1 day ago
parent
commit
71ace982f4
2 changed files with 10 additions and 5 deletions
  1. 9 4
      AppStart/Helper/LeaderCompPrize2Helper.cs
  2. 1 1
      Startup.cs

+ 9 - 4
AppStart/Helper/LeaderCompPrize2Helper.cs

@@ -33,6 +33,10 @@ namespace MySystem
                     if(string.IsNullOrEmpty(check))
                     {
                         function.WritePage("/LeaderComp/", DateTime.Now.ToString("yyyyMMdd") + ".txt", DateTime.Now.ToString());
+                        if(DateTime.Now.Day == 1)
+                        {
+                            Ready(DateTime.Now.AddMonths(-1).ToString("yyyyMM"));
+                        }
                         Ready(DateTime.Now.ToString("yyyyMM"));
                     }
                 }
@@ -49,11 +53,11 @@ namespace MySystem
 
         public void ListenTest()//启动
         {
-            string check = function.ReadInstance("/LeaderComp/Repeat/202502.txt");
+            string check = function.ReadInstance("/LeaderComp/Repeat/202503.txt");
             if (string.IsNullOrEmpty(check))
             {
-                function.WritePage("/LeaderComp/Repeat/", "202502.txt", DateTime.Now.ToString());
-                Ready("202502");
+                function.WritePage("/LeaderComp/Repeat/", "202503.txt", DateTime.Now.ToString());
+                Ready("202503");
             }
         }
 
@@ -297,7 +301,8 @@ namespace MySystem
                 db.SaveChanges();
 
                 LeaderCompTradeStat stat = db.LeaderCompTradeStat.FirstOrDefault(m => m.UserId == UserId) ?? new LeaderCompTradeStat();
-                if(stat.LeaderType > 1 && CompPrize > 0)
+                // if(stat.LeaderType > 1 && CompPrize > 0)
+                if(CompPrize > 0)
                 {
                     sql += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (1," + stat.TradeAmount + "," + CompPrize + ",now(),'" + MonthFlag + "'," + UserId + ");";
                 }

+ 1 - 1
Startup.cs

@@ -172,7 +172,7 @@ namespace MySystem
             // }
             
 
-            // LeaderCompPrize2Helper.Instance.StartTest();
+            LeaderCompPrize2Helper.Instance.StartTest();
             // RecommandKingHelper.Instance.StartTest();
         }