LeaderCompPrizeHelper.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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 < 19)
  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("202410");
  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. CustomerSqlConn.op("delete from kxs_shd_leader where trade_month='" + curMonth + "'", MysqlConn.JavaUserSqlConnStr);
  61. doSomething(curMonth);
  62. SendPrize(curMonth, curMonth);
  63. }
  64. public void doSomething(string month)
  65. {
  66. try
  67. {
  68. WebCMSEntities db = new WebCMSEntities();
  69. ReadModels.WebCMSEntities readdb = new ReadModels.WebCMSEntities();
  70. OpModels.WebCMSEntities opdb = new OpModels.WebCMSEntities();
  71. MpMainModels.WebCMSEntities mpmaindb = new MpMainModels.WebCMSEntities();
  72. MpMainModels2.WebCMSEntities mpmaindb2 = new MpMainModels2.WebCMSEntities();
  73. string MonthString = month;
  74. //统计交易增量
  75. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  76. //创客团队交易额
  77. string sql = "";
  78. int rownum = 0;
  79. int num = 0;
  80. 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);
  81. function.WriteLog("交易数:" + dt.Rows.Count.ToString(), "领导人达标奖励日志");
  82. foreach(DataRow dr in dt.Rows)
  83. {
  84. rownum += 1;
  85. function.WriteLog("rownum:" + rownum.ToString(), "领导人达标奖励日志");
  86. int UserId = int.Parse(dr["user_id"].ToString());
  87. decimal TradeAmount = decimal.Parse(dr["amt"].ToString());
  88. int ParentUserld = int.Parse(dr["pid"].ToString());
  89. string ParentNav = dr["pid_path"].ToString();
  90. int LeaderType = int.Parse(dr["leader_type"].ToString());
  91. sql += "insert into LeaderCompTradeStat (LeaderType,ParentNav,ParentUserld,TradeAmount,StatMonth,Userld,CreateDate) values (" + LeaderType + ", '" + ParentNav + "', " + ParentUserld + ", " + TradeAmount + ", '" + month + "', " + UserId + ",now());\n";
  92. num += 1;
  93. if(num >= 200)
  94. {
  95. function.WriteLog("执行一次sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  96. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  97. sql = "";
  98. num = 0;
  99. }
  100. }
  101. if(!string.IsNullOrEmpty(sql))
  102. {
  103. function.WriteLog("最后执行sql:" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff"), "领导人达标奖励日志");
  104. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  105. }
  106. //计算创客名下的达标人数,直推和间接
  107. function.WriteLog("MonthString:" + MonthString, "领导人达标奖励日志");
  108. Thread.Sleep(600);
  109. // List<LeaderCompTradeStat> stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList();
  110. 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);
  111. function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志");
  112. string sql = "";
  113. foreach(DataRow stat in stats.Rows)
  114. {
  115. int UserId = int.Parse(function.CheckInt(stat["UserId"].ToString()));
  116. int ParentUserId = int.Parse(function.CheckInt(stat["ParentUserId"].ToString()));
  117. int LeaderType = int.Parse(function.CheckInt(stat["LeaderType"].ToString()));
  118. decimal totalAmount = decimal.Parse(function.CheckNum(stat["TradeAmount"].ToString()));
  119. decimal bigTradeAmount = decimal.Parse(function.CheckNum(stat["BigTradeAmount"].ToString()));
  120. decimal smallTradeAmount = totalAmount - bigTradeAmount;
  121. int BigCount = int.Parse(function.CheckInt(stat["BigCount"].ToString()));
  122. int SmallCount = int.Parse(function.CheckInt(stat["SmallCount"].ToString()));
  123. int LeaderCount = int.Parse(function.CheckInt(stat["LeaderCount"].ToString()));
  124. int OperaterCount = int.Parse(function.CheckInt(stat["OperaterCount"].ToString()));
  125. string ParentNav = stat["ParentNav"].ToString();
  126. //计算达标市场
  127. if((totalAmount >= 30000000 && totalAmount - bigTradeAmount >= 12000000) || BigCount >= 2 || totalAmount - bigTradeAmount >= 30000000)
  128. {
  129. LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
  130. if(tmp == null)
  131. {
  132. tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
  133. {
  134. Id = UserId,
  135. ParentUserId = ParentUserId,
  136. ParentNav = ParentNav
  137. }).Entity;
  138. db.SaveChanges();
  139. }
  140. tmp.EveryMonthData = "1";
  141. db.SaveChanges();
  142. }
  143. //培养奖
  144. if(totalAmount - bigTradeAmount < 30000000) BigCount -= 1;
  145. if(BigCount > 0 && LeaderType > 1)
  146. {
  147. decimal leaderOnePrize = 2500;
  148. decimal operaterOnePrize = 3000;
  149. decimal onePrize = 0;
  150. if(BigCount == 1) onePrize = 2000;
  151. if(BigCount == 2) onePrize = 2500;
  152. if(BigCount == 3)
  153. {
  154. onePrize = 3000;
  155. leaderOnePrize = 3000;
  156. }
  157. if(BigCount == 4)
  158. {
  159. onePrize = 4000;
  160. leaderOnePrize = 4000;
  161. operaterOnePrize = 4000;
  162. }
  163. if(BigCount == 5)
  164. {
  165. onePrize = 5000;
  166. leaderOnePrize = 5000;
  167. operaterOnePrize = 5000;
  168. }
  169. if(BigCount >= 6)
  170. {
  171. onePrize = 6000;
  172. leaderOnePrize = 6000;
  173. operaterOnePrize = 6000;
  174. }
  175. decimal tradePrize = onePrize * (BigCount - LeaderCount - OperaterCount) + LeaderCount * leaderOnePrize + OperaterCount * operaterOnePrize; //培养奖金额
  176. 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 + ");";
  177. }
  178. }
  179. db.SaveChanges();
  180. readdb.SaveChanges();
  181. opdb.Dispose();
  182. mpmaindb.Dispose();
  183. mpmaindb2.Dispose();
  184. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  185. CustomerSqlConn.op(sql, MysqlConn.JavaUserSqlConnStr);
  186. }
  187. catch(Exception ex)
  188. {
  189. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "领导达标人奖励异常");
  190. }
  191. }
  192. private void SendPrize(string month, string checkDate)
  193. {
  194. string sql = "";
  195. string MonthFlag = month + "-" + checkDate;
  196. WebCMSEntities db = new WebCMSEntities();
  197. DataTable dt = CustomerSqlConn.dtable("select ParentUserId,ParentNav,count(1) from LeaderCompTmp where EveryMonthData='1' GROUP BY ParentUserId,ParentNav", MysqlConn.SqlConnStr);
  198. foreach(DataRow dr in dt.Rows)
  199. {
  200. int ParentUserId = int.Parse(function.CheckInt(dr["ParentUserId"].ToString()));
  201. string ParentNav = dr["ParentNav"].ToString();
  202. int Count = int.Parse(function.CheckInt(dr[2].ToString()));
  203. LeaderCompPrize edit = db.LeaderCompPrize.FirstOrDefault(m => m.StatMonth == MonthFlag && m.UserId == ParentUserId);
  204. if(edit == null)
  205. {
  206. edit = db.LeaderCompPrize.Add(new LeaderCompPrize()
  207. {
  208. CreateDate = DateTime.Now,
  209. StatMonth = MonthFlag,
  210. UserId = ParentUserId,
  211. }).Entity;
  212. db.SaveChanges();
  213. }
  214. edit.DirectCount = Count; //达标市场
  215. 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);
  216. foreach(DataRow drsub in dtsub.Rows)
  217. {
  218. int SubCount = int.Parse(function.CheckInt(drsub[1].ToString()));
  219. edit.NotDirectCount += SubCount; //深度达标总数
  220. if(SubCount > Count)
  221. {
  222. SubCount = Count;
  223. }
  224. edit.SecDirectCount += SubCount; //深度达标计奖数
  225. }
  226. decimal CompPrize = edit.SecDirectCount * 1000;
  227. edit.CompPrize = CompPrize;
  228. db.SaveChanges();
  229. LeaderCompTradeStat stat = db.LeaderCompTradeStat.FirstOrDefault(m => m.UserId == ParentUserId) ?? new LeaderCompTradeStat();
  230. 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 + ");";
  231. }
  232. CustomerSqlConn.op(sql, MysqlConn.JavaUserSqlConnStr);
  233. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  234. db.Dispose();
  235. }
  236. }
  237. }