123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using MySystem.PxcModels;
- using Library;
- using LitJson;
- using System.Threading;
- using GraphQL;
- namespace MySystem
- {
- public class RecommandKingHelper
- {
- public readonly static RecommandKingHelper Instance = new RecommandKingHelper();
- private RecommandKingHelper()
- { }
-
-
- public void Start()
- {
- Thread th = new Thread(StartFor);
- th.IsBackground = true;
- th.Start();
- }
- public void StartFor()
- {
- while (true)
- {
- if(DateTime.Now.Hour > 19 && DateTime.Now.Hour < 23)
- {
- string today = DateTime.Now.ToString("yyyy-MM-dd");
- string checkFlag = function.ReadInstance("/RecommandKing/" + today + ".txt");
- if(string.IsNullOrEmpty(checkFlag))
- {
- function.WritePage("/RecommandKing/", today + ".txt", DateTime.Now.ToString());
- if(DateTime.Now.Day == 2)
- {
- Recommend(DateTime.Now.AddMonths(-1).ToString("yyyyMM"), 1);
- Recommend(DateTime.Now.AddMonths(-1).ToString("yyyyMM"), 2);
- }
- Recommend(DateTime.Now.ToString("yyyyMM"), 1);
- Recommend(DateTime.Now.ToString("yyyyMM"), 2);
- }
- }
- Thread.Sleep(600000);
- }
- }
- public void Recommend(string TradeMonth, int Kind)
- {
- int CheckCount = 0;
- if(Kind == 1) CheckCount = 40;
- if(Kind == 2) CheckCount = 50;
- List<int> ReduceUserId = new List<int>();
- WebCMSEntities db = new WebCMSEntities();
- List<RecommendDirectUser> list = new List<RecommendDirectUser>();
- List<int> Historys = new List<int>();
- if(Kind == 1)
- {
- Historys = db.RecommendDirectUser.Where(m => m.QueryCount >= CheckCount && m.TradeMonth != TradeMonth && m.Kind == Kind).ToList().Select(m => m.UserId).ToList();
- Historys.Add(565);
- Historys.Add(139473);
- Historys.Add(173790);
- Historys.Add(174506);
- Historys.Add(127023);
- }
- DateTime check = DateTime.Parse("2023-10-01 00:00:00");
- DateTime start = DateTime.Parse(TradeMonth.Substring(0, 4) + "-" + TradeMonth.Substring(4, 2) + "-01 00:00:00");
- DateTime end = start.AddMonths(1);
- CustomerSqlConn.op("delete from RecommendDirectUser where TradeMonth='" + TradeMonth + "' and Kind=" + Kind, MysqlConn.SqlConnStr);
- List<int> ProductIds = new List<int>();
- ProductIds.Add(10);
- ProductIds.Add(11);
- ProductIds.Add(77);
- ProductIds.Add(78);
- ProductIds.Add(79);
- ProductIds.Add(27);
- ProductIds.Add(28);
- ProductIds.Add(39);
- ProductIds.Add(40);
- List<RecommandKingItem> users = new List<RecommandKingItem>();
- ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
- MpMainModels.WebCMSEntities mpdb = new MpMainModels.WebCMSEntities();
- MpMainModels2.WebCMSEntities mpdb2 = new MpMainModels2.WebCMSEntities();
- //统计当月下单名单
- // List<int> checkIds = readdb.Users.Where(m => (m.ParentNav.Contains(",609,") || m.Id == 609) && m.AuthFlag == 1).ToList().Select(m => m.Id).ToList();
- var orders = readdb.Orders.Where(m => m.PayDate >= check && m.Status > 0 && m.Sort == 0 && m.UserId > 1 && ProductIds.Contains(m.ProductId)).ToList();
- function.WriteLog(orders.Count.ToString(), "推荐王创客入库");
- List<int> uids = orders.Select(m => m.UserId).Distinct().ToList();
- foreach(int uid in uids)
- {
- ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
- if(user != null)
- {
- if(!users.Any(m => m.UserId == user.Id))
- {
- users.Add(new RecommandKingItem()
- {
- UserId = user.Id,
- ParentUserId = user.ParentUserId,
- ParentNav = user.ParentNav,
- // PreAmount = PreMonthAmt.ContainsKey(user.Id) ? PreMonthAmt[user.Id] : 0,
- Level = user.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
- UserLevel = user.UserLevel,
- Kind = 1,
- Op = false,
- });
- function.WriteLog(user.Id.ToString(), "推荐王创客入库");
- }
- }
- }
- foreach(RecommandKingItem user in users)
- {
- int uid = user.UserId;
- int ActCount = 0;
- if(ActCount == 0)
- {
- if(readdb.UserTradeMonthSummary.Any(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self"))
- {
- ActCount += readdb.UserTradeMonthSummary.Where(m => m.UserId == uid && m.TradeMonth == TradeMonth && m.SeoTitle == "self").Sum(m => m.ActiveBuddyMerStatus);
- // if(readdb.UserSimActSummary.Any(m => m.UserId == uid && m.Kind == 1))
- // {
- // ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == uid && m.Kind == 1).Sum(m => m.ActCount); //减去注销的用户
- // }
- }
- }
- if(ActCount == 0)
- {
- ActCount += mpdb.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
- }
- if(ActCount == 0)
- {
- ActCount += mpdb2.MerchantDepositOrder.Count(m => m.UserId == uid && m.CreateDate >= start && m.CreateDate < end && m.Status > 0 && m.UserId == uid);
- }
- if(ActCount > 0)
- {
- user.Op = true;
- function.WriteLog(user.UserId.ToString(), "推荐王达标创客名单");
- }
- }
- foreach(int uid in uids)
- {
- ReadModels.Users user = readdb.Users.FirstOrDefault(m => m.Id == uid);
- if(user != null)
- {
- string[] ParentIds = user.ParentNav.Replace(",,", ",").Trim(',').Split(',');
- foreach(string ParentId in ParentIds)
- {
- int ParentUserId = int.Parse(ParentId);
- ReadModels.Users puser = readdb.Users.FirstOrDefault(m => m.Id == ParentUserId && m.Id > 1);
- if(puser != null)
- {
- if(!users.Any(m => m.UserId == puser.Id))
- {
- users.Add(new RecommandKingItem()
- {
- UserId = puser.Id,
- ParentUserId = puser.ParentUserId,
- ParentNav = puser.ParentNav,
- // PreAmount = PreMonthAmt.ContainsKey(puser.Id) ? PreMonthAmt[puser.Id] : 0,
- Level = puser.ParentNav.Replace(",,", ",").Trim(',').Split(',').Length + 1,
- UserLevel = puser.UserLevel,
- Kind = 2,
- Op = false,
- });
- function.WriteLog(puser.Id.ToString() + "-p", "推荐王创客入库");
- }
- }
- }
- }
- }
- users = users.OrderByDescending(m => m.Level).ToList();
- foreach(RecommandKingItem user in users)
- {
- string UserIdStr = "," + user.UserId + ",";
- int Count = users.Count(m => m.ParentNav.Contains(UserIdStr) && m.Op);
- user.ActCount = Count;
- user.ChkActCount = Count;
- function.WriteLog(user.UserId + ":" + Count, "推荐王总的达标创客数量");
- // RedisDbconn.Instance.AddList("userstmp2024", user);
- }
- // users = RedisDbconn.Instance.GetList<RecommandKingItem>("userstmp2024", 1, 999999).OrderByDescending(m => m.Level).ToList();
- users = users.OrderByDescending(m => m.Level).ToList();
- foreach(RecommandKingItem user in users)
- {
- function.WriteLog(user.UserId.ToString() + "-" + user.UserLevel, "推荐王最终的达标创客数量分析");
- int ActCount = 0;
- List<RecommandKingItem> subs = users.Where(m => m.ParentUserId == user.UserId).ToList();
- foreach(RecommandKingItem sub in subs)
- {
- function.WriteLog(sub.UserId + ":" + sub.ActCount, "推荐王最终的达标创客数量分析");
- if(sub.ActCount < CheckCount && sub.UserLevel < 5 && !Historys.Contains(sub.UserId))
- {
- ActCount += sub.ActCount;
- if(sub.Op) ActCount += 1;
- }
- }
- user.ActCount = ActCount;
- function.WriteLog("\n\n\n", "推荐王最终的达标创客数量分析");
- }
- int num = 0;
- foreach(RecommandKingItem user in users)
- {
- if(!Historys.Contains(user.UserId))
- {
- num += 1;
- RecommendDirectUser item = db.RecommendDirectUser.FirstOrDefault(m => m.UserId == user.UserId && m.TradeMonth == TradeMonth && m.Kind == Kind);
- if(item == null)
- {
- function.WriteLog(user.UserId.ToString(), "推荐王达标最终入库");
- item = db.RecommendDirectUser.Add(new RecommendDirectUser()
- {
- UserId = user.UserId,
- TradeMonth = TradeMonth,
- QueryCount = user.ActCount > CheckCount ? CheckCount : user.ActCount,
- Kind = Kind,
- }).Entity;
- if(num % 200 == 0)
- {
- db.SaveChanges();
- }
- }
- }
- }
- db.SaveChanges();
- db.Dispose();
- readdb.Dispose();
- mpdb.Dispose();
- mpdb2.Dispose();
- }
- public decimal GetTradeAmt(int UserId, string TradeMonth)
- {
- ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
- MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
- MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
- decimal TradeAmount = 0;
- //创客团队交易额
- bool check = rdb.TradeDaySummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- 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);
- }
- check = rdb.TradeDaySummary2.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- TradeAmount += rdb.TradeDaySummary2.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team").Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
- }
- //码牌团队交易额(直联)
- check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
- }
- //码牌团队交易额(银联)
- check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
- }
- //广电卡扶持期按1万/张计入职级
- check = rdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
- if (check)
- {
- TradeAmount += rdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).Sum(m => m.ActiveBuddyMerStatus) * 10000;
- }
- return TradeAmount;
- }
- public Dictionary<int, decimal> GetTradeAmtList(string TradeMonth)
- {
- Dictionary<int, decimal> dic = new Dictionary<int, decimal>();
- ReadModels.WebCMSEntities rdb = new ReadModels.WebCMSEntities();
- MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
- MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
- //创客团队交易额
- bool check = rdb.TradeDaySummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- var list = rdb.TradeDaySummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
- foreach(var item in list)
- {
- int UserId = item.Key;
- decimal Amt = item.Sum(m => m.HelpNonDirectTradeAmt + m.HelpNonDirectDebitTradeAmt + m.NotHelpNonDirectTradeAmt + m.NotHelpNonDirectDebitTradeAmt + m.ProfitNonDirectTradeAmt + m.ProfitNonDirectDebitTradeAmt);
- if(!dic.ContainsKey(UserId))
- {
- dic.Add(UserId, Amt);
- }
- else
- {
- dic[UserId] += Amt;
- }
- }
- }
- check = rdb.TradeDaySummary2.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- var list = rdb.TradeDaySummary2.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team").ToList().GroupBy(m => m.UserId);
- foreach(var item in list)
- {
- int UserId = item.Key;
- decimal Amt = item.Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
- if(!dic.ContainsKey(UserId))
- {
- dic.Add(UserId, Amt);
- }
- else
- {
- dic[UserId] += Amt;
- }
- }
- }
- //码牌团队交易额(直联)
- check = mpmaindb.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- var list = mpmaindb.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
- foreach(var item in list)
- {
- int UserId = item.Key;
- decimal Amt = item.Sum(m => m.TotalAmount) * 4;
- if(!dic.ContainsKey(UserId))
- {
- dic.Add(UserId, Amt);
- }
- else
- {
- dic[UserId] += Amt;
- }
- }
- }
- //码牌团队交易额(银联)
- check = mpmaindb2.UserAmountSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team");
- if (check)
- {
- var list = mpmaindb2.UserAmountSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.IsAct == 1).ToList().GroupBy(m => m.UserId);
- foreach(var item in list)
- {
- int UserId = item.Key;
- decimal Amt = item.Sum(m => m.TotalAmount) * 4;
- if(!dic.ContainsKey(UserId))
- {
- dic.Add(UserId, Amt);
- }
- else
- {
- dic[UserId] += Amt;
- }
- }
- }
- //广电卡扶持期按1万/张计入职级
- check = rdb.UserTradeMonthSummary.Any(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14);
- if (check)
- {
- var list = rdb.UserTradeMonthSummary.Where(m => m.TradeMonth == TradeMonth && m.SeoTitle == "team" && m.BrandId == 14).ToList().GroupBy(m => m.UserId);
- foreach(var item in list)
- {
- int UserId = item.Key;
- decimal Amt = item.Sum(m => m.ActiveBuddyMerStatus) * 10000;
- if(!dic.ContainsKey(UserId))
- {
- dic.Add(UserId, Amt);
- }
- else
- {
- dic[UserId] += Amt;
- }
- }
- }
- return dic;
- }
- }
- }
|