123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315 |
- using System;
- using System.Threading;
- using System.Linq;
- using System.Data;
- using Library;
- using LitJson;
- using System.Collections.Generic;
- using MySystem.PxcModels;
- namespace MySystem
- {
- public class LeaderCompPrizeHelper
- {
- public readonly static LeaderCompPrizeHelper Instance = new LeaderCompPrizeHelper();
- private LeaderCompPrizeHelper()
- {
- }
- public void Start()//启动
- {
- Thread thread = new Thread(Listen);
- thread.IsBackground = true;
- thread.Start();
- }
- public void Listen()//启动
- {
- while(true)
- {
- if(DateTime.Now.Hour >= 0 && DateTime.Now.Hour < 12)
- {
- string check = function.ReadInstance("/LeaderComp/" + DateTime.Now.ToString("yyyyMMdd") + ".txt");
- if(string.IsNullOrEmpty(check))
- {
- function.WritePage("/LeaderComp/", DateTime.Now.ToString("yyyyMMdd") + ".txt", DateTime.Now.ToString());
- if(DateTime.Now.Day == 1)
- {
- Ready(DateTime.Now.AddMonths(-1).ToString("yyyyMM"));
- Thread.Sleep(2000);
- CustomerSqlConn.op("insert into LeaderCompPrizeBak select * from LeaderCompPrize;insert into LeaderCompAddTradeBak select * from LeaderCompAddTrade;", MysqlConn.SqlConnStr);
- CustomerSqlConn.op("delete from LeaderCompTmpBak;insert into LeaderCompTmpBak (Id,EveryMonthData,ParentNav,ParentUserId) select Id,EveryMonthData,ParentNav,ParentUserId from LeaderCompTmp;", MysqlConn.SqlConnStr);
- CustomerSqlConn.op("insert into LeaderCompTradeStatBak (`CreateDate`, `TradeAmount`, `ParentNav`, `ParentUserId`, `UserId`, `StatMonth`) select `CreateDate`, `TradeAmount`, `ParentNav`, `ParentUserId`, `UserId`, `StatMonth` from LeaderCompTradeStat;", MysqlConn.SqlConnStr);
- }
- Ready(DateTime.Now.ToString("yyyyMM"));
- }
- }
- Thread.Sleep(60000);
- }
- }
- public void StartTest()//启动
- {
- Thread thread = new Thread(ListenTest);
- thread.IsBackground = true;
- thread.Start();
- }
- public void ListenTest()//启动
- {
- Ready("202405");
- }
- public void Ready(string curMonth)
- {
- CustomerSqlConn.op("delete from LeaderCompTradeStat;delete from LeaderCompTmp;delete from LeaderCompPrize;delete from LeaderCompAddTrade;", MysqlConn.SqlConnStr);
- doSomething(curMonth, curMonth);
- SendPrize(curMonth, curMonth);
- }
- public void doSomething(string month, string checkMonth)
- {
- try
- {
- WebCMSEntities db = new WebCMSEntities();
- ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
- OpModels.WebCMSEntities opdb = new OpModels.WebCMSEntities();
- MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
- MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
- string MonthString = month + "-" + checkMonth;
- //统计交易增量
- function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
-
- //创客团队交易额
- string sql = "";
- int rownum = 0;
- int num = 0;
- DataTable dt = CustomerSqlConn.dtable("select UserId,sum(HelpNonDirectTradeAmt + NotHelpNonDirectTradeAmt + ProfitNonDirectTradeAmt + HelpNonDirectDebitTradeAmt + NotHelpNonDirectDebitTradeAmt + ProfitNonDirectDebitTradeAmt) Amt from TradeDaySummary where Id>=15055757 and TradeMonth='" + month + "' and SeoTitle='team' and UserId>0 and UserId not in (select Id from Users where Status<0) group by UserId", MysqlConn.ReadSqlConnStr);
- function.WriteLog("交易数:" + dt.Rows.Count.ToString(), "领导人达标奖励日志");
- foreach(DataRow dr in dt.Rows)
- {
- rownum += 1;
- function.WriteLog("rownum:" + rownum.ToString(), "领导人达标奖励日志");
- int UserId = int.Parse(dr["UserId"].ToString());
- decimal TradeAmount = decimal.Parse(dr["Amt"].ToString());
- //稳定期B
- bool check = readdb.TradeDaySummary2.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team");
- if (check)
- {
- TradeAmount += readdb.TradeDaySummary2.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team").Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
- }
- //码牌团队交易额(直联)
- check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1);
- if (check)
- {
- TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
- }
- check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0);
- if (check)
- {
- TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0).Sum(m => m.TotalAmount);
- }
- //码牌团队交易额(银联)
- check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1);
- if (check)
- {
- TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
- }
- check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0);
- if (check)
- {
- TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0).Sum(m => m.TotalAmount);
- }
- //广电卡扶持期按1万/张计入职级
- check = readdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.BrandId == 14);
- if (check)
- {
- int ActCount = readdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.BrandId == 14).Sum(m => m.ActiveBuddyMerStatus);
- ActCount += UserDataDbconn.Instance.GetSimActTradeAmt(UserId, month, "Team");
- // if(readdb.UserSimActSummary.Any(m => m.UserId == UserId && m.Kind == 1))
- // {
- // ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == UserId && m.Kind == 1).Sum(m => m.ActCount);
- // }
- 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)
- {
- function.WriteLog("执行一次sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
- sql = "";
- num = 0;
- }
- }
- if(!string.IsNullOrEmpty(sql))
- {
- function.WriteLog("最后执行sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
- }
- CustomerSqlConn.op("update LeaderCompTradeStat leader set ParentUserId=case when (select ParentUserId from Users where Id=leader.UserId) is null then 0 else (select ParentUserId from Users where Id=leader.UserId) end,ParentNav=(select ParentNav from Users where Id=leader.UserId) where StatMonth='" + MonthString + "' and UserId>1", MysqlConn.SqlConnStr);
- function.WriteLog("start2-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- //计算创客名下的达标人数,直推和间接
- function.WriteLog("MonthString:" + MonthString, "领导人达标奖励日志");
- Thread.Sleep(600000);
-
- // List<LeaderCompTradeStat> stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList();
- DataTable stats = CustomerSqlConn.dtable("select UserId,ParentUserId,ParentNav,TradeAmount,(select sum(TradeAmount) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount<30000000) SmallTradeAmount from LeaderCompTradeStat p where StatMonth='" + MonthString + "' and UserId>1", MysqlConn.SqlConnStr);
- function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志");
- foreach(DataRow stat in stats.Rows)
- {
- int UserId = int.Parse(function.CheckInt(stat["UserId"].ToString()));
- int ParentUserId = int.Parse(function.CheckInt(stat["ParentUserId"].ToString()));
- decimal totalAmount = decimal.Parse(function.CheckNum(stat["TradeAmount"].ToString()));
- decimal smallTradeAmount = decimal.Parse(function.CheckNum(stat["SmallTradeAmount"].ToString()));
- string ParentNav = stat["ParentNav"].ToString();
- function.WriteLog("1-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- function.WriteLog("UserId:" + UserId, "领导人达标奖励日志");
- function.WriteLog("totalAmount:" + totalAmount, "领导人达标奖励日志");
- function.WriteLog("3-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
-
- //直推创客交易额大于等于3000万即成为达标市场
- if(totalAmount >= 30000000 && !string.IsNullOrEmpty(ParentNav))
- {
- function.WriteLog("4-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
- if(tmp == null)
- {
- tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
- {
- Id = UserId,
- ParentUserId = ParentUserId,
- ParentNav = ParentNav
- }).Entity;
- db.SaveChanges();
- }
- tmp.EveryMonthData += "1";
- db.SaveChanges();
- function.WriteLog("5-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- }
- if(smallTradeAmount >= 30000000 && !string.IsNullOrEmpty(ParentNav))
- {
- function.WriteLog("4-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
- if(tmp == null)
- {
- tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
- {
- Id = UserId,
- ParentUserId = ParentUserId,
- ParentNav = ParentNav
- }).Entity;
- db.SaveChanges();
- }
- tmp.EveryMonthData += "2";
- db.SaveChanges();
- function.WriteLog("5-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- }
-
- function.WriteLog("7-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
- function.WriteLog(DateTime.Now.ToString() + "------" + UserId, "领导人达标奖励日志");
- }
- db.SaveChanges();
- readdb.SaveChanges();
- opdb.Dispose();
- mpmaindb.Dispose();
- mpmaindb2.Dispose();
- function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
- }
- catch(Exception ex)
- {
- function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "领导达标人奖励异常");
- }
- }
- private void SendPrize(string month, string checkDate)
- {
- string MonthFlag = month + "-" + checkDate;
- WebCMSEntities db = new WebCMSEntities();
- DataTable dt = CustomerSqlConn.dtable("select ParentUserId,ParentNav,count(1) from LeaderCompTmp where SUBSTR(EveryMonthData,1,1)='1' GROUP BY ParentUserId,ParentNav", MysqlConn.SqlConnStr);
- foreach(DataRow dr in dt.Rows)
- {
- int ParentUserId = int.Parse(function.CheckInt(dr["ParentUserId"].ToString()));
- string ParentNav = dr["ParentNav"].ToString();
- int Count = int.Parse(function.CheckInt(dr[2].ToString()));
- LeaderCompPrize edit = db.LeaderCompPrize.FirstOrDefault(m => m.StatMonth == MonthFlag && m.UserId == ParentUserId);
- if(edit == null)
- {
- edit = db.LeaderCompPrize.Add(new LeaderCompPrize()
- {
- CreateDate = DateTime.Now,
- StatMonth = MonthFlag,
- UserId = ParentUserId,
- }).Entity;
- db.SaveChanges();
- }
- edit.DirectCount = Count; //达标市场
- DataTable dtsub = CustomerSqlConn.dtable("select SUBSTRING_INDEX(SUBSTRING_INDEX(REPLACE(ParentNav, '" + ParentNav + "', ''),',',2),',',-1),count(1) from LeaderCompTmp where ParentUserId!=" + ParentUserId + " and ParentNav like '%," + ParentUserId + ",%' and SUBSTR(EveryMonthData,2,1)='2' group by SUBSTRING_INDEX(SUBSTRING_INDEX(REPLACE(ParentNav, '" + ParentNav + "', ''),',',2),',',-1)", MysqlConn.SqlConnStr);
- foreach(DataRow drsub in dtsub.Rows)
- {
- int SubCount = int.Parse(function.CheckInt(drsub[1].ToString()));
- edit.NotDirectCount += SubCount; //深度达标总数
- if(SubCount > Count)
- {
- SubCount = Count;
- }
- edit.SecDirectCount += SubCount; //深度达标计奖数
- }
- edit.CompPrize = edit.SecDirectCount * 500;
- db.SaveChanges();
- }
- function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
- db.Dispose();
- }
- private decimal GetPrize(int count, int direct)
- {
- decimal prize = 0;
- // if (count + direct >= 30)
- // {
- // prize = 3000 * (count + direct * 2);
- // }
- // else if (count + direct >= 25)
- // {
- // prize = 2500 * (count + direct * 2);
- // }
- // else if (count + direct >= 20)
- // {
- // prize = 2000 * (count + direct * 2);
- // }
- // else if (count + direct >= 15)
- // {
- // prize = 1500 * (count + direct * 2);
- // }
- // else if (count + direct >= 10)
- // {
- // prize = 1000 * (count + direct * 2);
- // }
- // else if (count + direct >= 5)
- // {
- // prize = 500 * (count + direct * 2);
- // }
- prize = 500 * count;
- return prize;
- }
-
- }
- }
|