浏览代码

统计wifi交易bug问题

lcl 5 月之前
父节点
当前提交
309968ad99
共有 2 个文件被更改,包括 18 次插入2 次删除
  1. 2 2
      AppStart/Helper/LeaderCompPrizeHelper.cs
  2. 16 0
      AppStart/UserDataDbconn.cs

+ 2 - 2
AppStart/Helper/LeaderCompPrizeHelper.cs

@@ -57,7 +57,7 @@ namespace MySystem
 
         public void ListenTest()//启动
         {
-            Ready("202405");
+            Ready("202409");
         }
 
         public void Ready(string curMonth)
@@ -143,7 +143,7 @@ namespace MySystem
                     if (check)
                     {
                         int ActCount = readdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && bids.Contains(m.BrandId)).Sum(m => m.ActiveBuddyMerStatus);
-                        ActCount += UserDataDbconn.Instance.GetSimActTradeAmt(UserId, month, "Team");
+                        ActCount += UserDataDbconn.Instance.GetWifiActTradeAmt(UserId, month, "Team");
                         TradeAmount += ActCount * 10000;
                     }
                     sql += "insert into LeaderCompTradeStat (CreateDate,UserId,StatMonth,TradeAmount) values (now(), " + UserId + ", '" + month + "-" + checkMonth + "', " + TradeAmount + ");\n";

+ 16 - 0
AppStart/UserDataDbconn.cs

@@ -28,5 +28,21 @@ namespace MySystem
 
         #endregion
 
+        #region WIFI存量查询
+
+        public int GetWifiActTradeAmt(int UserId, string Month, string Kind = "Self")
+        {
+            int ActCount = 0;
+            string PreMonth = DateTime.Parse(Month.Substring(0, 4) + "-" + Month.Substring(4, 2) + "-01 00:00:00").AddMonths(-1).ToString("yyyyMM");
+            DataTable dt = CustomerSqlConn.dtable("select sum(WifiAct" + Kind + "Count) WifiAct" + Kind + "Count from KxsStatServer.WifiValidAct" + PreMonth + " where UserId=" + UserId, MysqlConn.ReadSqlConnStr);
+            if(dt.Rows.Count > 0)
+            {
+                ActCount = int.Parse(function.CheckInt(dt.Rows[0]["WifiAct" + Kind + "Count"].ToString()));
+            }
+            return ActCount;
+        }
+
+        #endregion
+
     }
 }