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 < 19) { 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("202410"); } public void Ready(string curMonth) { CustomerSqlConn.op("delete from LeaderCompTradeStat;delete from LeaderCompTmp;delete from LeaderCompPrize;delete from LeaderCompAddTrade;", MysqlConn.SqlConnStr); CustomerSqlConn.op("delete from kxs_shd_leader where trade_month='" + curMonth + "'", MysqlConn.JavaUserSqlConnStr); doSomething(curMonth); SendPrize(curMonth, curMonth); } public void doSomething(string month) { 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; //统计交易增量 function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志"); //创客团队交易额 string sql = ""; int rownum = 0; int num = 0; DataTable dt = CustomerSqlConn.dtable("select user_id,pid,pid_path,leader_type,(case when amt is null then 0 else amt end) amt from (select tb1.user_id,pid,pid_path,leader_type,trade_amt+act_trade_amt+unact_trade_amt+act_num-logout_num amt from (select user_id,sum(help_direct_trade_amt+pro_direct_trade_amt+pro_a_direct_trade_amt+pro_b_direct_trade_amt) trade_amt from kxs_user_trade_#{now,yyyyMM}# where total_type=1 and brand_id not in (18,19,20,21,29,101,100) group by user_id) tb1 LEFT JOIN (select user_id,sum(help_direct_trade_amt)*4 act_trade_amt,sum(pro_direct_trade_amt) unact_trade_amt from kxs_user_trade_#{now,yyyyMM}# where total_type=1 and brand_id in (101,100,18,19,20,21,29) group by user_id) tb2 on tb1.user_id=tb2.user_id LEFT JOIN (select user_id,sum(act_num)*10000 act_num from kxs_user_act_trade where total_type=1 and brand_id in (14,23,24,25,26,32) and trade_month<'#{now,yyyyMM}#' group by user_id) tb3 on tb1.user_id=tb3.user_id LEFT JOIN (select user_id,logout_num*10000 logout_num from kxs_user_logout_trade where total_type=1 and trade_month='#{now,-1,MONTH,yyyyMM}#') tb4 on tb1.user_id=tb4.user_id LEFT JOIN kxs_user.kxs_user u on tb1.user_id=u.id LEFT JOIN kxs_user.kxs_leader l on tb1.user_id=l.id and l.expired_date>now()) tball where amt>0", MysqlConn.JavaStatSqlConnStr); function.WriteLog("交易数:" + dt.Rows.Count.ToString(), "领导人达标奖励日志"); foreach(DataRow dr in dt.Rows) { rownum += 1; function.WriteLog("rownum:" + rownum.ToString(), "领导人达标奖励日志"); int UserId = int.Parse(dr["user_id"].ToString()); decimal TradeAmount = decimal.Parse(dr["amt"].ToString()); int ParentUserld = int.Parse(dr["pid"].ToString()); string ParentNav = dr["pid_path"].ToString(); int LeaderType = int.Parse(dr["leader_type"].ToString()); sql += "insert into LeaderCompTradeStat (LeaderType,ParentNav,ParentUserld,TradeAmount,StatMonth,Userld,CreateDate) values (" + LeaderType + ", '" + ParentNav + "', " + ParentUserld + ", " + TradeAmount + ", '" + month + "', " + UserId + ",now());\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); } //计算创客名下的达标人数,直推和间接 function.WriteLog("MonthString:" + MonthString, "领导人达标奖励日志"); Thread.Sleep(600); // List stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList(); DataTable stats = CustomerSqlConn.dtable("select UserId,ParentUserId,ParentNav,TradeAmount,LeaderType,(select sum(TradeAmount) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigTradeAmount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount<30000000) SmallCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType=2) LeaderCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType>2) OperaterCount from LeaderCompTradeStat p where StatMonth='" + MonthString + "' and UserId>1", MysqlConn.SqlConnStr); function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志"); string sql = ""; foreach(DataRow stat in stats.Rows) { int UserId = int.Parse(function.CheckInt(stat["UserId"].ToString())); int ParentUserId = int.Parse(function.CheckInt(stat["ParentUserId"].ToString())); int LeaderType = int.Parse(function.CheckInt(stat["LeaderType"].ToString())); decimal totalAmount = decimal.Parse(function.CheckNum(stat["TradeAmount"].ToString())); decimal bigTradeAmount = decimal.Parse(function.CheckNum(stat["BigTradeAmount"].ToString())); decimal smallTradeAmount = totalAmount - bigTradeAmount; int BigCount = int.Parse(function.CheckInt(stat["BigCount"].ToString())); int SmallCount = int.Parse(function.CheckInt(stat["SmallCount"].ToString())); int LeaderCount = int.Parse(function.CheckInt(stat["LeaderCount"].ToString())); int OperaterCount = int.Parse(function.CheckInt(stat["OperaterCount"].ToString())); string ParentNav = stat["ParentNav"].ToString(); //计算达标市场 if((totalAmount >= 30000000 && totalAmount - bigTradeAmount >= 12000000) || BigCount >= 2 || totalAmount - bigTradeAmount >= 30000000) { 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(); } //培养奖 if(totalAmount - bigTradeAmount < 30000000) BigCount -= 1; if(BigCount > 0 && LeaderType > 1) { decimal leaderOnePrize = 2500; decimal operaterOnePrize = 3000; decimal onePrize = 0; if(BigCount == 1) onePrize = 2000; if(BigCount == 2) onePrize = 2500; if(BigCount == 3) { onePrize = 3000; leaderOnePrize = 3000; } if(BigCount == 4) { onePrize = 4000; leaderOnePrize = 4000; operaterOnePrize = 4000; } if(BigCount == 5) { onePrize = 5000; leaderOnePrize = 5000; operaterOnePrize = 5000; } if(BigCount >= 6) { onePrize = 6000; leaderOnePrize = 6000; operaterOnePrize = 6000; } decimal tradePrize = onePrize * (BigCount - LeaderCount - OperaterCount) + LeaderCount * leaderOnePrize + OperaterCount * operaterOnePrize; //培养奖金额 sql += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (0," + totalAmount + "," + tradePrize + ",now(),'" + MonthString + "'," + ParentUserId + ");"; } } db.SaveChanges(); readdb.SaveChanges(); opdb.Dispose(); mpmaindb.Dispose(); mpmaindb2.Dispose(); function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志"); CustomerSqlConn.op(sql, MysqlConn.JavaUserSqlConnStr); } catch(Exception ex) { function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "领导达标人奖励异常"); } } private void SendPrize(string month, string checkDate) { string sql = ""; string MonthFlag = month + "-" + checkDate; WebCMSEntities db = new WebCMSEntities(); DataTable dt = CustomerSqlConn.dtable("select ParentUserId,ParentNav,count(1) from LeaderCompTmp where EveryMonthData='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 + "', ''),',',1),',',-1),count(1) from LeaderCompTmp where ParentUserId!=" + ParentUserId + " and ParentNav like '%," + ParentUserId + ",%' and EveryMonthData='1' group by SUBSTRING_INDEX(SUBSTRING_INDEX(REPLACE(ParentNav, '" + ParentNav + "', ''),',',1),',',-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; //深度达标计奖数 } decimal CompPrize = edit.SecDirectCount * 1000; edit.CompPrize = CompPrize; db.SaveChanges(); LeaderCompTradeStat stat = db.LeaderCompTradeStat.FirstOrDefault(m => m.UserId == ParentUserId) ?? new LeaderCompTradeStat(); sql += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (1," + CompPrize + "," + stat.TradeAmount + ",now(),'" + MonthFlag + "'," + ParentUserId + ");"; } CustomerSqlConn.op(sql, MysqlConn.JavaUserSqlConnStr); function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志"); db.Dispose(); } } }