|
@@ -133,6 +133,19 @@ namespace MySystem
|
|
|
// }
|
|
|
TradeAmount += ActCount * 10000;
|
|
|
}
|
|
|
+ //WIFI扶持期按1万/张计入职级
|
|
|
+ List<int> bids = new List<int>();
|
|
|
+ bids.Add(23);
|
|
|
+ bids.Add(24);
|
|
|
+ bids.Add(25);
|
|
|
+ bids.Add(26);
|
|
|
+ check = readdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && bids.Contains(m.BrandId));
|
|
|
+ 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");
|
|
|
+ TradeAmount += ActCount * 10000;
|
|
|
+ }
|
|
|
sql += "insert into LeaderCompTradeStat (CreateDate,UserId,StatMonth,TradeAmount) values (now(), " + UserId + ", '" + month + "-" + checkMonth + "', " + TradeAmount + ");\n";
|
|
|
num += 1;
|
|
|
if(num >= 200)
|