LeaderCompPrizeHelper.cs 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. using System;
  2. using System.Threading;
  3. using System.Linq;
  4. using System.Data;
  5. using Library;
  6. using LitJson;
  7. using System.Collections.Generic;
  8. using MySystem.PxcModels;
  9. namespace MySystem
  10. {
  11. public class LeaderCompPrizeHelper
  12. {
  13. public readonly static LeaderCompPrizeHelper Instance = new LeaderCompPrizeHelper();
  14. private LeaderCompPrizeHelper()
  15. {
  16. }
  17. public void Start()//启动
  18. {
  19. Thread thread = new Thread(Listen);
  20. thread.IsBackground = true;
  21. thread.Start();
  22. }
  23. public void Listen()//启动
  24. {
  25. while(true)
  26. {
  27. if(DateTime.Now.Hour >= 0 && DateTime.Now.Hour < 12)
  28. {
  29. string check = function.ReadInstance("/LeaderComp/" + DateTime.Now.ToString("yyyyMMdd") + ".txt");
  30. if(string.IsNullOrEmpty(check))
  31. {
  32. function.WritePage("/LeaderComp/", DateTime.Now.ToString("yyyyMMdd") + ".txt", DateTime.Now.ToString());
  33. if(DateTime.Now.Day == 1)
  34. {
  35. Ready(DateTime.Now.AddMonths(-1).ToString("yyyyMM"));
  36. Thread.Sleep(2000);
  37. CustomerSqlConn.op("insert into LeaderCompPrizeBak select * from LeaderCompPrize;insert into LeaderCompAddTradeBak select * from LeaderCompAddTrade;", MysqlConn.SqlConnStr);
  38. CustomerSqlConn.op("delete from LeaderCompTmpBak;insert into LeaderCompTmpBak (Id,EveryMonthData,ParentNav,ParentUserId) select Id,EveryMonthData,ParentNav,ParentUserId from LeaderCompTmp;", MysqlConn.SqlConnStr);
  39. CustomerSqlConn.op("insert into LeaderCompTradeStatBak (`CreateDate`, `TradeAmount`, `ParentNav`, `ParentUserId`, `UserId`, `StatMonth`) select `CreateDate`, `TradeAmount`, `ParentNav`, `ParentUserId`, `UserId`, `StatMonth` from LeaderCompTradeStat;", MysqlConn.SqlConnStr);
  40. }
  41. Ready(DateTime.Now.ToString("yyyyMM"));
  42. }
  43. }
  44. Thread.Sleep(60000);
  45. }
  46. }
  47. public void StartTest()//启动
  48. {
  49. Thread thread = new Thread(ListenTest);
  50. thread.IsBackground = true;
  51. thread.Start();
  52. }
  53. public void ListenTest()//启动
  54. {
  55. Ready("202405");
  56. }
  57. public void Ready(string curMonth)
  58. {
  59. CustomerSqlConn.op("delete from LeaderCompTradeStat;delete from LeaderCompTmp;delete from LeaderCompPrize;delete from LeaderCompAddTrade;", MysqlConn.SqlConnStr);
  60. doSomething(curMonth, curMonth);
  61. SendPrize(curMonth, curMonth);
  62. }
  63. public void doSomething(string month, string checkMonth)
  64. {
  65. try
  66. {
  67. WebCMSEntities db = new WebCMSEntities();
  68. ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
  69. OpModels.WebCMSEntities opdb = new OpModels.WebCMSEntities();
  70. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  71. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  72. string MonthString = month + "-" + checkMonth;
  73. //统计交易增量
  74. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  75. //创客团队交易额
  76. string sql = "";
  77. int rownum = 0;
  78. int num = 0;
  79. 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);
  80. function.WriteLog("交易数:" + dt.Rows.Count.ToString(), "领导人达标奖励日志");
  81. foreach(DataRow dr in dt.Rows)
  82. {
  83. rownum += 1;
  84. function.WriteLog("rownum:" + rownum.ToString(), "领导人达标奖励日志");
  85. int UserId = int.Parse(dr["UserId"].ToString());
  86. decimal TradeAmount = decimal.Parse(dr["Amt"].ToString());
  87. //稳定期B
  88. bool check = readdb.TradeDaySummary2.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team");
  89. if (check)
  90. {
  91. TradeAmount += readdb.TradeDaySummary2.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team").Sum(m => m.ProfitTradeAmt + m.ProfitDebitTradeAmt);
  92. }
  93. //码牌团队交易额(直联)
  94. check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1);
  95. if (check)
  96. {
  97. TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  98. }
  99. check = mpmaindb.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0);
  100. if (check)
  101. {
  102. TradeAmount += mpmaindb.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0).Sum(m => m.TotalAmount);
  103. }
  104. //码牌团队交易额(银联)
  105. check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1);
  106. if (check)
  107. {
  108. TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 1).Sum(m => m.TotalAmount) * 4;
  109. }
  110. check = mpmaindb2.UserAmountSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0);
  111. if (check)
  112. {
  113. TradeAmount += mpmaindb2.UserAmountSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.IsAct == 0).Sum(m => m.TotalAmount);
  114. }
  115. //广电卡扶持期按1万/张计入职级
  116. check = readdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.BrandId == 14);
  117. if (check)
  118. {
  119. int ActCount = readdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && m.BrandId == 14).Sum(m => m.ActiveBuddyMerStatus);
  120. ActCount += UserDataDbconn.Instance.GetSimActTradeAmt(UserId, month, "Team");
  121. // if(readdb.UserSimActSummary.Any(m => m.UserId == UserId && m.Kind == 1))
  122. // {
  123. // ActCount -= readdb.UserSimActSummary.Where(m => m.UserId == UserId && m.Kind == 1).Sum(m => m.ActCount);
  124. // }
  125. TradeAmount += ActCount * 10000;
  126. }
  127. //WIFI扶持期按1万/张计入职级
  128. List<int> bids = new List<int>();
  129. bids.Add(23);
  130. bids.Add(24);
  131. bids.Add(25);
  132. bids.Add(26);
  133. check = readdb.UserTradeMonthSummary.Any(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && bids.Contains(m.BrandId));
  134. if (check)
  135. {
  136. int ActCount = readdb.UserTradeMonthSummary.Where(m => m.UserId == UserId && m.TradeMonth == month && m.SeoTitle == "team" && bids.Contains(m.BrandId)).Sum(m => m.ActiveBuddyMerStatus);
  137. ActCount += UserDataDbconn.Instance.GetSimActTradeAmt(UserId, month, "Team");
  138. TradeAmount += ActCount * 10000;
  139. }
  140. sql += "insert into LeaderCompTradeStat (CreateDate,UserId,StatMonth,TradeAmount) values (now(), " + UserId + ", '" + month + "-" + checkMonth + "', " + TradeAmount + ");\n";
  141. num += 1;
  142. if(num >= 200)
  143. {
  144. function.WriteLog("执行一次sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  145. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  146. sql = "";
  147. num = 0;
  148. }
  149. }
  150. if(!string.IsNullOrEmpty(sql))
  151. {
  152. function.WriteLog("最后执行sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  153. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  154. }
  155. 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);
  156. function.WriteLog("start2-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  157. //计算创客名下的达标人数,直推和间接
  158. function.WriteLog("MonthString:" + MonthString, "领导人达标奖励日志");
  159. Thread.Sleep(600000);
  160. // List<LeaderCompTradeStat> stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList();
  161. 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);
  162. function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志");
  163. foreach(DataRow stat in stats.Rows)
  164. {
  165. int UserId = int.Parse(function.CheckInt(stat["UserId"].ToString()));
  166. int ParentUserId = int.Parse(function.CheckInt(stat["ParentUserId"].ToString()));
  167. decimal totalAmount = decimal.Parse(function.CheckNum(stat["TradeAmount"].ToString()));
  168. decimal smallTradeAmount = decimal.Parse(function.CheckNum(stat["SmallTradeAmount"].ToString()));
  169. string ParentNav = stat["ParentNav"].ToString();
  170. function.WriteLog("1-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  171. function.WriteLog("UserId:" + UserId, "领导人达标奖励日志");
  172. function.WriteLog("totalAmount:" + totalAmount, "领导人达标奖励日志");
  173. function.WriteLog("3-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  174. //直推创客交易额大于等于3000万即成为达标市场
  175. if(totalAmount >= 30000000 && !string.IsNullOrEmpty(ParentNav))
  176. {
  177. function.WriteLog("4-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  178. LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
  179. if(tmp == null)
  180. {
  181. tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
  182. {
  183. Id = UserId,
  184. ParentUserId = ParentUserId,
  185. ParentNav = ParentNav
  186. }).Entity;
  187. db.SaveChanges();
  188. }
  189. tmp.EveryMonthData += "1";
  190. db.SaveChanges();
  191. function.WriteLog("5-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  192. }
  193. if(smallTradeAmount >= 30000000 && !string.IsNullOrEmpty(ParentNav))
  194. {
  195. function.WriteLog("4-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  196. LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
  197. if(tmp == null)
  198. {
  199. tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
  200. {
  201. Id = UserId,
  202. ParentUserId = ParentUserId,
  203. ParentNav = ParentNav
  204. }).Entity;
  205. db.SaveChanges();
  206. }
  207. tmp.EveryMonthData += "2";
  208. db.SaveChanges();
  209. function.WriteLog("5-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  210. }
  211. function.WriteLog("7-----" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  212. function.WriteLog(DateTime.Now.ToString() + "------" + UserId, "领导人达标奖励日志");
  213. }
  214. db.SaveChanges();
  215. readdb.SaveChanges();
  216. opdb.Dispose();
  217. mpmaindb.Dispose();
  218. mpmaindb2.Dispose();
  219. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  220. }
  221. catch(Exception ex)
  222. {
  223. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "领导达标人奖励异常");
  224. }
  225. }
  226. private void SendPrize(string month, string checkDate)
  227. {
  228. string MonthFlag = month + "-" + checkDate;
  229. WebCMSEntities db = new WebCMSEntities();
  230. DataTable dt = CustomerSqlConn.dtable("select ParentUserId,ParentNav,count(1) from LeaderCompTmp where SUBSTR(EveryMonthData,1,1)='1' GROUP BY ParentUserId,ParentNav", MysqlConn.SqlConnStr);
  231. foreach(DataRow dr in dt.Rows)
  232. {
  233. int ParentUserId = int.Parse(function.CheckInt(dr["ParentUserId"].ToString()));
  234. string ParentNav = dr["ParentNav"].ToString();
  235. int Count = int.Parse(function.CheckInt(dr[2].ToString()));
  236. LeaderCompPrize edit = db.LeaderCompPrize.FirstOrDefault(m => m.StatMonth == MonthFlag && m.UserId == ParentUserId);
  237. if(edit == null)
  238. {
  239. edit = db.LeaderCompPrize.Add(new LeaderCompPrize()
  240. {
  241. CreateDate = DateTime.Now,
  242. StatMonth = MonthFlag,
  243. UserId = ParentUserId,
  244. }).Entity;
  245. db.SaveChanges();
  246. }
  247. edit.DirectCount = Count; //达标市场
  248. 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);
  249. foreach(DataRow drsub in dtsub.Rows)
  250. {
  251. int SubCount = int.Parse(function.CheckInt(drsub[1].ToString()));
  252. edit.NotDirectCount += SubCount; //深度达标总数
  253. if(SubCount > Count)
  254. {
  255. SubCount = Count;
  256. }
  257. edit.SecDirectCount += SubCount; //深度达标计奖数
  258. }
  259. edit.CompPrize = edit.SecDirectCount * 500;
  260. db.SaveChanges();
  261. }
  262. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  263. db.Dispose();
  264. }
  265. private decimal GetPrize(int count, int direct)
  266. {
  267. decimal prize = 0;
  268. // if (count + direct >= 30)
  269. // {
  270. // prize = 3000 * (count + direct * 2);
  271. // }
  272. // else if (count + direct >= 25)
  273. // {
  274. // prize = 2500 * (count + direct * 2);
  275. // }
  276. // else if (count + direct >= 20)
  277. // {
  278. // prize = 2000 * (count + direct * 2);
  279. // }
  280. // else if (count + direct >= 15)
  281. // {
  282. // prize = 1500 * (count + direct * 2);
  283. // }
  284. // else if (count + direct >= 10)
  285. // {
  286. // prize = 1000 * (count + direct * 2);
  287. // }
  288. // else if (count + direct >= 5)
  289. // {
  290. // prize = 500 * (count + direct * 2);
  291. // }
  292. prize = 500 * count;
  293. return prize;
  294. }
  295. }
  296. }