RecommandKingHelper.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  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 > 0 && DateTime.Now.Hour < 23)
  28. {
  29. Recommend();
  30. }
  31. Thread.Sleep(600000);
  32. }
  33. }
  34. public void Recommend()
  35. {
  36. string today = DateTime.Now.ToString("yyyy-MM-dd");
  37. string checkFlag = function.ReadInstance("/RecommandKing/" + today + ".txt");
  38. if(!string.IsNullOrEmpty(checkFlag))
  39. {
  40. return;
  41. }
  42. function.WritePage("/RecommandKing/", today + ".txt", DateTime.Now.ToString());
  43. List<int> Historys = new List<int>();
  44. Historys.Add(565);
  45. Historys.Add(139473);
  46. Historys.Add(173790);
  47. Historys.Add(174506);
  48. string TradeMonth = DateTime.Now.AddMonths(-0).ToString("yyyyMM");
  49. DateTime check = DateTime.Parse("2023-10-01 00:00:00");
  50. DateTime start = DateTime.Parse(DateTime.Now.AddMonths(-0).ToString("yyyy-MM") + "-01 00:00:00");
  51. DateTime end = start.AddMonths(1);
  52. CustomerSqlConn.op("delete from RecommendDirectUser where TradeMonth='" + TradeMonth + "'", MysqlConn.SqlConnStr);
  53. string PreTradeMonth = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
  54. List<int> ProductIds = new List<int>();
  55. ProductIds.Add(10);
  56. ProductIds.Add(11);
  57. ProductIds.Add(77);
  58. ProductIds.Add(78);
  59. ProductIds.Add(79);
  60. ProductIds.Add(27);
  61. ProductIds.Add(28);
  62. ProductIds.Add(39);
  63. ProductIds.Add(40);
  64. List<RecommandKingItem> users = new List<RecommandKingItem>();
  65. Dictionary<int, decimal> PreMonthAmt = GetTradeAmtList(PreTradeMonth);
  66. WebCMSEntities db = new WebCMSEntities();
  67. ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
  68. //统计当月下单名单
  69. List<int> uids = readdb.Orders.Where(m => m.PayDate >= check && m.Status > 0 && m.Sort == 0 && m.UserId > 1 && ProductIds.Contains(m.ProductId)).ToList().Select(m => m.UserId).Distinct().ToList();
  70. foreach(int uid in uids)
  71. {
  72. int ActCount = 0;
  73. if(ActCount == 0)
  74. {
  75. if(readdb.UserTradeMonthSummary.Any(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "team"))
  76. {
  77. ActCount += readdb.UserTradeMonthSummary.Where(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "team").Sum(m => m.ActiveBuddyMerStatus);
  78. if(readdb.UserSimActSummary.Any(m => m.UserId == uid && m.Kind == 1))
  79. {
  80. ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == uid && m.Kind == 1).Sum(m => m.ActCount); //减去注销的用户
  81. }
  82. }
  83. }
  84. if(ActCount == 0)
  85. {
  86. MpMainModels.WebCMSEntities mpdb = new MpMainModels.WebCMSEntities();
  87. ActCount += mpdb.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
  88. mpdb.Dispose();
  89. }
  90. if(ActCount == 0)
  91. {
  92. MpMainModels2.WebCMSEntities mpdb = new MpMainModels2.WebCMSEntities();
  93. ActCount += mpdb.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
  94. mpdb.Dispose();
  95. }
  96. if(ActCount > 0)
  97. {
  98. Users user = db.Users.FirstOrDefault(m => m.Id == uid);
  99. if(user != null)
  100. {
  101. if(!users.Any(m => m.UserId == user.Id))
  102. {
  103. users.Add(new RecommandKingItem()
  104. {
  105. UserId = user.Id,
  106. ParentUserId = user.ParentUserId,
  107. ParentNav = user.ParentNav,
  108. PreAmount = PreMonthAmt.ContainsKey(user.Id) ? PreMonthAmt[user.Id] : 0,
  109. Level = user.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1
  110. });
  111. }
  112. // string ParentNav = user.ParentNav;
  113. // if(!string.IsNullOrEmpty(ParentNav))
  114. // {
  115. // string[] ParentNavList = ParentNav.Replace(",,", ",").Trim(',').Split(',');
  116. // Array.Reverse(ParentNavList);
  117. // bool PassFlag = true;
  118. // foreach(string UserIdString in ParentNavList)
  119. // {
  120. // int UserId = int.Parse(UserIdString);
  121. // //判断是否历史达标创客
  122. // if(PassFlag)
  123. // {
  124. // if(db.RecommendDirectUser.Any(m => m.UserId == UserId && m.TradeMonth != TradeMonth && m.QueryCount >= 50) || Historys.Contains(UserId))
  125. // {
  126. // PassFlag = false;
  127. // }
  128. // }
  129. // if(PassFlag)
  130. // {
  131. // if(db.RecommendDirectUser.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.QueryCount >= 50))
  132. // {
  133. // PassFlag = false;
  134. // }
  135. // }
  136. // if(PassFlag)
  137. // {
  138. // RecommendDirectUser item = db.RecommendDirectUser.FirstOrDefault(m => m.UserId == UserId && m.TradeMonth == TradeMonth);
  139. // if(item == null)
  140. // {
  141. // item = db.RecommendDirectUser.Add(new RecommendDirectUser()
  142. // {
  143. // UserId = UserId,
  144. // TradeMonth = TradeMonth,
  145. // }).Entity;
  146. // db.SaveChanges();
  147. // }
  148. // item.QueryCount += 1;
  149. // db.SaveChanges();
  150. // }
  151. // //判断上月交易额是否满3000W
  152. // if(PassFlag)
  153. // {
  154. // if(GetTradeAmt(UserId, PreTradeMonth) >= 30000000)
  155. // {
  156. // PassFlag = false;
  157. // }
  158. // }
  159. // }
  160. // }
  161. }
  162. }
  163. }
  164. users = users.OrderByDescending(m => m.Level).ToList();
  165. List<RecommandKingItem> users2 = users.OrderBy(m => m.Level).ToList();
  166. foreach(RecommandKingItem user in users)
  167. {
  168. string UserIdStr = "," + user.UserId + ",";
  169. RecommandKingItem lookSub = users2.FirstOrDefault(m => m.ParentNav.Contains(UserIdStr) && (m.ActCount >= 50 || m.PreAmount >= 30000000));
  170. if(lookSub != null)
  171. {
  172. string ParentNav = lookSub.ParentNav + "," + lookSub.UserId + ",";
  173. user.ActCount = users.Count(m => m.ParentNav.Contains(UserIdStr) && !m.ParentNav.StartsWith(ParentNav) && m.UserId != lookSub.UserId && m.ActCount < 50 && m.PreAmount < 30000000);
  174. }
  175. else
  176. {
  177. user.ActCount = users.Count(m => m.ParentNav.Contains(UserIdStr) && m.ActCount < 50 && m.PreAmount < 30000000);
  178. }
  179. }
  180. int num = 0;
  181. foreach(RecommandKingItem user in users)
  182. {
  183. num += 1;
  184. RecommendDirectUser item = db.RecommendDirectUser.FirstOrDefault(m => m.UserId == user.UserId && m.TradeMonth == TradeMonth);
  185. if(item == null)
  186. {
  187. item = db.RecommendDirectUser.Add(new RecommendDirectUser()
  188. {
  189. UserId = user.UserId,
  190. TradeMonth = TradeMonth,
  191. QueryCount = user.ActCount > 50 ? 50 : user.ActCount,
  192. }).Entity;
  193. if(num % 200 == 0)
  194. {
  195. db.SaveChanges();
  196. }
  197. }
  198. }
  199. db.SaveChanges();
  200. db.Dispose();
  201. readdb.Dispose();
  202. }
  203. public decimal GetTradeAmt(int UserId, string TradeMonth)
  204. {
  205. ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
  206. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  207. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  208. decimal TradeAmount = 0;
  209. //创客团队交易额
  210. bool check = rdb.TradeDaySummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  211. if (check)
  212. {
  213. 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);
  214. }
  215. check = rdb.TradeDaySummary2.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  216. if (check)
  217. {
  218. TradeAmount += rdb.TradeDaySummary2.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team").Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
  219. }
  220. //码牌团队交易额(直联)
  221. check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  222. if (check)
  223. {
  224. TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  225. }
  226. //码牌团队交易额(银联)
  227. check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  228. if (check)
  229. {
  230. TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  231. }
  232. //广电卡扶持期按1万/张计入职级
  233. check = rdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
  234. if (check)
  235. {
  236. TradeAmount += rdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).Sum(m => m.ActiveBuddyMerStatus) * 10000;
  237. }
  238. return TradeAmount;
  239. }
  240. public Dictionary<int, decimal> GetTradeAmtList(string TradeMonth)
  241. {
  242. Dictionary<int, decimal> dic = new Dictionary<int, decimal>();
  243. ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
  244. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  245. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  246. //创客团队交易额
  247. bool check = rdb.TradeDaySummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  248. if (check)
  249. {
  250. var list = rdb.TradeDaySummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
  251. foreach(var item in list)
  252. {
  253. int UserId = item.Key;
  254. decimal Amt = item.Sum(m => m.HelpNonDirectTradeAmt + m.HelpNonDirectDebitTradeAmt + m.NotHelpNonDirectTradeAmt + m.NotHelpNonDirectDebitTradeAmt + m.ProfitNonDirectTradeAmt + m.ProfitNonDirectDebitTradeAmt);
  255. if(!dic.ContainsKey(UserId))
  256. {
  257. dic.Add(UserId, Amt);
  258. }
  259. else
  260. {
  261. dic[UserId] += Amt;
  262. }
  263. }
  264. }
  265. check = rdb.TradeDaySummary2.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  266. if (check)
  267. {
  268. var list = rdb.TradeDaySummary2.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
  269. foreach(var item in list)
  270. {
  271. int UserId = item.Key;
  272. decimal Amt = item.Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
  273. if(!dic.ContainsKey(UserId))
  274. {
  275. dic.Add(UserId, Amt);
  276. }
  277. else
  278. {
  279. dic[UserId] += Amt;
  280. }
  281. }
  282. }
  283. //码牌团队交易额(直联)
  284. check = mpmaindb.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  285. if (check)
  286. {
  287. var list = mpmaindb.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
  288. foreach(var item in list)
  289. {
  290. int UserId = item.Key;
  291. decimal Amt = item.Sum(m => m.TotalAmount) * 4;
  292. if(!dic.ContainsKey(UserId))
  293. {
  294. dic.Add(UserId, Amt);
  295. }
  296. else
  297. {
  298. dic[UserId] += Amt;
  299. }
  300. }
  301. }
  302. //码牌团队交易额(银联)
  303. check = mpmaindb2.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
  304. if (check)
  305. {
  306. var list = mpmaindb2.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
  307. foreach(var item in list)
  308. {
  309. int UserId = item.Key;
  310. decimal Amt = item.Sum(m => m.TotalAmount) * 4;
  311. if(!dic.ContainsKey(UserId))
  312. {
  313. dic.Add(UserId, Amt);
  314. }
  315. else
  316. {
  317. dic[UserId] += Amt;
  318. }
  319. }
  320. }
  321. //广电卡扶持期按1万/张计入职级
  322. check = rdb.UserTradeMonthSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
  323. if (check)
  324. {
  325. var list = rdb.UserTradeMonthSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).ToList().GroupBy(m => m.UserId);
  326. foreach(var item in list)
  327. {
  328. int UserId = item.Key;
  329. decimal Amt = item.Sum(m => m.ActiveBuddyMerStatus) * 10000;
  330. if(!dic.ContainsKey(UserId))
  331. {
  332. dic.Add(UserId, Amt);
  333. }
  334. else
  335. {
  336. dic[UserId] += Amt;
  337. }
  338. }
  339. }
  340. return dic;
  341. }
  342. }
  343. }