LeaderCompPrizeHelper.cs 16 KB

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