RecommandKingHelper.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Data;
  5. using MySystem.PxcModels;
  6. using Library;
  7. using LitJson;
  8. using System.Threading;
  9. using GraphQL;
  10. namespace MySystem
  11. {
  12. public class RecommandKingHelper
  13. {
  14. public readonly static RecommandKingHelper Instance = new RecommandKingHelper();
  15. private RecommandKingHelper()
  16. { }
  17. public void Start()
  18. {
  19. Thread th = new Thread(StartFor);
  20. th.IsBackground = true;
  21. th.Start();
  22. }
  23. public void StartFor()
  24. {
  25. while (true)
  26. {
  27. if(DateTime.Now.Hour > 19 && DateTime.Now.Hour < 23)
  28. {
  29. string today = DateTime.Now.ToString("yyyy-MM-dd");
  30. string checkFlag = function.ReadInstance("/RecommandKing/" + today + ".txt");
  31. if(string.IsNullOrEmpty(checkFlag))
  32. {
  33. function.WritePage("/RecommandKing/", today + ".txt", DateTime.Now.ToString());
  34. if(DateTime.Now.Day == 2)
  35. {
  36. Recommend(DateTime.Now.AddMonths(-1).ToString("yyyyMM"), 1);
  37. Recommend(DateTime.Now.AddMonths(-1).ToString("yyyyMM"), 2);
  38. }
  39. Recommend(DateTime.Now.ToString("yyyyMM"), 1);
  40. Recommend(DateTime.Now.ToString("yyyyMM"), 2);
  41. }
  42. }
  43. Thread.Sleep(600000);
  44. }
  45. }
  46. public void Recommend(string TradeMonth, int Kind)
  47. {
  48. int CheckCount = 0;
  49. if(Kind == 1) CheckCount = 40;
  50. if(Kind == 2) CheckCount = 50;
  51. List<int> ReduceUserId = new List<int>();
  52. WebCMSEntities db = new WebCMSEntities();
  53. List<RecommendDirectUser> list = new List<RecommendDirectUser>();
  54. List<int> Historys = new List<int>();
  55. if(Kind == 1)
  56. {
  57. Historys = db.RecommendDirectUser.Where(m => m.QueryCount >= CheckCount && m.TradeMonth != TradeMonth && m.Kind == Kind).ToList().Select(m => m.UserId).ToList();
  58. Historys.Add(565);
  59. Historys.Add(139473);
  60. Historys.Add(173790);
  61. Historys.Add(174506);
  62. Historys.Add(127023);
  63. }
  64. DateTime check = DateTime.Parse("2023-10-01 00:00:00");
  65. DateTime start = DateTime.Parse(TradeMonth.Substring(0, 4) + "-" + TradeMonth.Substring(4, 2) + "-01 00:00:00");
  66. DateTime end = start.AddMonths(1);
  67. CustomerSqlConn.op("delete from RecommendDirectUser where TradeMonth='" + TradeMonth + "' and Kind=" + Kind, MysqlConn.SqlConnStr);
  68. List<int> ProductIds = new List<int>();
  69. ProductIds.Add(10);
  70. ProductIds.Add(11);
  71. ProductIds.Add(77);
  72. ProductIds.Add(78);
  73. ProductIds.Add(79);
  74. ProductIds.Add(27);
  75. ProductIds.Add(28);
  76. ProductIds.Add(39);
  77. ProductIds.Add(40);
  78. List<RecommandKingItem> users = new List<RecommandKingItem>();
  79. ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
  80. MpMainModels.WebCMSEntities mpdb = new MpMainModels.WebCMSEntities();
  81. MpMainModels2.WebCMSEntities mpdb2 = new MpMainModels2.WebCMSEntities();
  82. //统计当月下单名单
  83. // List<int> checkIds = readdb.Users.Where(m => (m.ParentNav.Contains(",609,") || m.Id == 609) && m.AuthFlag == 1).ToList().Select(m => m.Id).ToList();
  84. var orders = readdb.Orders.Where(m => m.PayDate >= check && m.Status > 0 && m.Sort == 0 && m.UserId > 1 && ProductIds.Contains(m.ProductId)).ToList();
  85. function.WriteLog(orders.Count.ToString(), "推荐王创客入库");
  86. List<int> uids = orders.Select(m => m.UserId).Distinct().ToList();
  87. foreach(int uid in uids)
  88. {
  89. ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
  90. if(user != null)
  91. {
  92. if(!users.Any(m => m.UserId == user.Id))
  93. {
  94. users.Add(new RecommandKingItem()
  95. {
  96. UserId = user.Id,
  97. ParentUserId = user.ParentUserId,
  98. ParentNav = user.ParentNav,
  99. // PreAmount = PreMonthAmt.ContainsKey(user.Id) ? PreMonthAmt[user.Id] : 0,
  100. Level = user.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
  101. UserLevel = user.UserLevel,
  102. Kind = 1,
  103. Op = false,
  104. });
  105. function.WriteLog(user.Id.ToString(), "推荐王创客入库");
  106. }
  107. }
  108. }
  109. foreach(RecommandKingItem user in users)
  110. {
  111. int uid = user.UserId;
  112. int ActCount = 0;
  113. if(ActCount == 0)
  114. {
  115. if(readdb.UserTradeMonthSummary.Any(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self"))
  116. {
  117. ActCount += readdb.UserTradeMonthSummary.Where(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self").Sum(m => m.ActiveBuddyMerStatus);
  118. // if(readdb.UserSimActSummary.Any(m => m.UserId == uid && m.Kind == 1))
  119. // {
  120. // ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == uid && m.Kind == 1).Sum(m => m.ActCount); //减去注销的用户
  121. // }
  122. }
  123. }
  124. if(ActCount == 0)
  125. {
  126. ActCount += mpdb.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
  127. }
  128. if(ActCount == 0)
  129. {
  130. ActCount += mpdb2.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
  131. }
  132. if(ActCount > 0)
  133. {
  134. user.Op = true;
  135. function.WriteLog(user.UserId.ToString(), "推荐王达标创客名单");
  136. }
  137. }
  138. foreach(int uid in uids)
  139. {
  140. ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
  141. if(user != null)
  142. {
  143. string[] ParentIds = user.ParentNav.Replace(",,", ",").Trim(',').Split(',');
  144. foreach(string ParentId in ParentIds)
  145. {
  146. int ParentUserId = int.Parse(ParentId);
  147. ReadModels.Users puser = readdb.Users.FirstOrDefault(m => m.Id == ParentUserId && m.Id > 1);
  148. if(puser != null)
  149. {
  150. if(!users.Any(m => m.UserId == puser.Id))
  151. {
  152. users.Add(new RecommandKingItem()
  153. {
  154. UserId = puser.Id,
  155. ParentUserId = puser.ParentUserId,
  156. ParentNav = puser.ParentNav,
  157. // PreAmount = PreMonthAmt.ContainsKey(puser.Id) ? PreMonthAmt[puser.Id] : 0,
  158. Level = puser.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
  159. UserLevel = puser.UserLevel,
  160. Kind = 2,
  161. Op = false,
  162. });
  163. function.WriteLog(puser.Id.ToString() + "-p", "推荐王创客入库");
  164. }
  165. }
  166. }
  167. }
  168. }
  169. users = users.OrderByDescending(m => m.Level).ToList();
  170. foreach(RecommandKingItem user in users)
  171. {
  172. string UserIdStr = "," + user.UserId + ",";
  173. int Count = users.Count(m => m.ParentNav.Contains(UserIdStr) && m.Op);
  174. user.ActCount = Count;
  175. user.ChkActCount = Count;
  176. function.WriteLog(user.UserId + ":" + Count, "推荐王总的达标创客数量");
  177. // RedisDbconn.Instance.AddList("userstmp2024", user);
  178. }
  179. // users = RedisDbconn.Instance.GetList<RecommandKingItem>("userstmp2024", 1, 999999).OrderByDescending(m => m.Level).ToList();
  180. users = users.OrderByDescending(m => m.Level).ToList();
  181. foreach(RecommandKingItem user in users)
  182. {
  183. function.WriteLog(user.UserId.ToString() + "-" + user.UserLevel, "推荐王最终的达标创客数量分析");
  184. int ActCount = 0;
  185. List<RecommandKingItem> subs = users.Where(m => m.ParentUserId == user.UserId).ToList();
  186. foreach(RecommandKingItem sub in subs)
  187. {
  188. function.WriteLog(sub.UserId + ":" + sub.ActCount, "推荐王最终的达标创客数量分析");
  189. if(sub.ActCount < CheckCount && sub.UserLevel < 5 && !Historys.Contains(sub.UserId))
  190. {
  191. ActCount += sub.ActCount;
  192. if(sub.Op) ActCount += 1;
  193. }
  194. }
  195. user.ActCount = ActCount;
  196. function.WriteLog("\n\n\n", "推荐王最终的达标创客数量分析");
  197. }
  198. int num = 0;
  199. foreach(RecommandKingItem user in users)
  200. {
  201. if(!Historys.Contains(user.UserId))
  202. {
  203. num += 1;
  204. RecommendDirectUser item = db.RecommendDirectUser.FirstOrDefault(m => m.UserId == user.UserId && m.TradeMonth == TradeMonth && m.Kind == Kind);
  205. if(item == null)
  206. {
  207. function.WriteLog(user.UserId.ToString(), "推荐王达标最终入库");
  208. item = db.RecommendDirectUser.Add(new RecommendDirectUser()
  209. {
  210. UserId = user.UserId,
  211. TradeMonth = TradeMonth,
  212. QueryCount = user.ActCount > CheckCount ? CheckCount : user.ActCount,
  213. Kind = Kind,
  214. }).Entity;
  215. if(num % 200 == 0)
  216. {
  217. db.SaveChanges();
  218. }
  219. }
  220. }
  221. }
  222. db.SaveChanges();
  223. db.Dispose();
  224. readdb.Dispose();
  225. mpdb.Dispose();
  226. mpdb2.Dispose();
  227. }
  228. public decimal GetTradeAmt(int UserId, string TradeMonth)
  229. {
  230. ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
  231. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  232. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  233. decimal TradeAmount = 0;
  234. //创客团队交易额
  235. bool check = rdb.TradeDaySummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  236. if (check)
  237. {
  238. TradeAmount += rdb.TradeDaySummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team").Sum(m => m.HelpNonDirectTradeAmt + m.HelpNonDirectDebitTradeAmt + m.NotHelpNonDirectTradeAmt + m.NotHelpNonDirectDebitTradeAmt + m.ProfitNonDirectTradeAmt + m.ProfitNonDirectDebitTradeAmt);
  239. }
  240. check = rdb.TradeDaySummary2.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  241. if (check)
  242. {
  243. TradeAmount += rdb.TradeDaySummary2.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team").Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
  244. }
  245. //码牌团队交易额(直联)
  246. check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  247. if (check)
  248. {
  249. TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  250. }
  251. //码牌团队交易额(银联)
  252. check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  253. if (check)
  254. {
  255. TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  256. }
  257. //广电卡扶持期按1万/张计入职级
  258. check = rdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
  259. if (check)
  260. {
  261. TradeAmount += rdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).Sum(m => m.ActiveBuddyMerStatus) * 10000;
  262. }
  263. return TradeAmount;
  264. }
  265. public Dictionary<int, decimal> GetTradeAmtList(string TradeMonth)
  266. {
  267. Dictionary<int, decimal> dic = new Dictionary<int, decimal>();
  268. ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
  269. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  270. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  271. //创客团队交易额
  272. bool check = rdb.TradeDaySummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  273. if (check)
  274. {
  275. var list = rdb.TradeDaySummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
  276. foreach(var item in list)
  277. {
  278. int UserId = item.Key;
  279. decimal Amt = item.Sum(m => m.HelpNonDirectTradeAmt + m.HelpNonDirectDebitTradeAmt + m.NotHelpNonDirectTradeAmt + m.NotHelpNonDirectDebitTradeAmt + m.ProfitNonDirectTradeAmt + m.ProfitNonDirectDebitTradeAmt);
  280. if(!dic.ContainsKey(UserId))
  281. {
  282. dic.Add(UserId, Amt);
  283. }
  284. else
  285. {
  286. dic[UserId] += Amt;
  287. }
  288. }
  289. }
  290. check = rdb.TradeDaySummary2.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  291. if (check)
  292. {
  293. var list = rdb.TradeDaySummary2.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
  294. foreach(var item in list)
  295. {
  296. int UserId = item.Key;
  297. decimal Amt = item.Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
  298. if(!dic.ContainsKey(UserId))
  299. {
  300. dic.Add(UserId, Amt);
  301. }
  302. else
  303. {
  304. dic[UserId] += Amt;
  305. }
  306. }
  307. }
  308. //码牌团队交易额(直联)
  309. check = mpmaindb.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  310. if (check)
  311. {
  312. var list = mpmaindb.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
  313. foreach(var item in list)
  314. {
  315. int UserId = item.Key;
  316. decimal Amt = item.Sum(m => m.TotalAmount) * 4;
  317. if(!dic.ContainsKey(UserId))
  318. {
  319. dic.Add(UserId, Amt);
  320. }
  321. else
  322. {
  323. dic[UserId] += Amt;
  324. }
  325. }
  326. }
  327. //码牌团队交易额(银联)
  328. check = mpmaindb2.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  329. if (check)
  330. {
  331. var list = mpmaindb2.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
  332. foreach(var item in list)
  333. {
  334. int UserId = item.Key;
  335. decimal Amt = item.Sum(m => m.TotalAmount) * 4;
  336. if(!dic.ContainsKey(UserId))
  337. {
  338. dic.Add(UserId, Amt);
  339. }
  340. else
  341. {
  342. dic[UserId] += Amt;
  343. }
  344. }
  345. }
  346. //广电卡扶持期按1万/张计入职级
  347. check = rdb.UserTradeMonthSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
  348. if (check)
  349. {
  350. var list = rdb.UserTradeMonthSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).ToList().GroupBy(m => m.UserId);
  351. foreach(var item in list)
  352. {
  353. int UserId = item.Key;
  354. decimal Amt = item.Sum(m => m.ActiveBuddyMerStatus) * 10000;
  355. if(!dic.ContainsKey(UserId))
  356. {
  357. dic.Add(UserId, Amt);
  358. }
  359. else
  360. {
  361. dic[UserId] += Amt;
  362. }
  363. }
  364. }
  365. return dic;
  366. }
  367. }
  368. }