LeaderCompPrize2Helper.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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 LeaderCompPrize2Helper
  12. {
  13. public readonly static LeaderCompPrize2Helper Instance = new LeaderCompPrize2Helper();
  14. private LeaderCompPrize2Helper()
  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 > 1 && DateTime.Now.Hour < 23)
  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. Ready(DateTime.Now.ToString("yyyyMM"));
  34. }
  35. }
  36. Thread.Sleep(60000);
  37. }
  38. }
  39. public void StartTest()//启动
  40. {
  41. Thread thread = new Thread(ListenTest);
  42. thread.IsBackground = true;
  43. thread.Start();
  44. }
  45. public void ListenTest()//启动
  46. {
  47. string check = function.ReadInstance("/LeaderComp/Repeat/202502.txt");
  48. if (string.IsNullOrEmpty(check))
  49. {
  50. function.WritePage("/LeaderComp/Repeat/", "202502.txt", DateTime.Now.ToString());
  51. Ready("202502");
  52. }
  53. }
  54. public void Ready(string curMonth)
  55. {
  56. CustomerSqlConn.op("delete from LeaderCompTradeStat;delete from LeaderCompTmp;delete from LeaderCompPrize;delete from LeaderCompAddTrade;", MysqlConn.SqlConnStr);
  57. CustomerSqlConn.op("delete from kxs_shd_leader where trade_month='" + curMonth + "'", MysqlConn.JavaUserSqlConnStr);
  58. doSomething(curMonth);
  59. SendPrize(curMonth);
  60. }
  61. public void doSomething(string month)
  62. {
  63. try
  64. {
  65. WebCMSEntities db = new WebCMSEntities();
  66. string MonthString = month;
  67. string PreMonthString = DateTime.Parse(month.Substring(0, 4) + "-" + month.Substring(4, 2) + "-01 00:00:00").AddMonths(-1).ToString("yyyyMM");
  68. //统计交易增量
  69. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  70. //创客团队交易额
  71. string sql = "";
  72. int rownum = 0;
  73. int num = 0;
  74. List<LeaderCompUser> UserData = new List<LeaderCompUser>();
  75. string rootsql = "select tb.user_id,pid,pid_path,leader_type,trade_amt from (select user_id,trade_amt from kxs_user_trade_info where trade_month='" + month + "' and trade_amt>0) tb LEFT JOIN kxs_user u on tb.user_id=u.id LEFT JOIN kxs_leader l on tb.user_id=l.id and l.expired_date>now()";
  76. function.WriteLog(rootsql, "领导人达标奖励日志");
  77. DataTable dt = CustomerSqlConn.dtable(rootsql, MysqlConn.JavaUserSqlConnStr);
  78. foreach(DataRow dr in dt.Rows)
  79. {
  80. int UserId = int.Parse(dr["user_id"].ToString());
  81. int ParentUserId = int.Parse(function.CheckInt(dr["pid"].ToString()));
  82. string ParentNav = dr["pid_path"].ToString();
  83. int LeaderType = int.Parse(function.CheckInt(dr["leader_type"].ToString()));
  84. decimal Amt = decimal.Parse(function.CheckNum(dr["trade_amt"].ToString()));
  85. LeaderCompUser item = UserData.FirstOrDefault(m => m.UserId == UserId);
  86. if(item == null)
  87. {
  88. UserData.Add(new LeaderCompUser()
  89. {
  90. UserId = UserId,
  91. ParentUserId = ParentUserId,
  92. ParentNav = ParentNav,
  93. LeaderType = LeaderType,
  94. Amt = Amt,
  95. });
  96. }
  97. else
  98. {
  99. item.Amt += Amt;
  100. }
  101. }
  102. function.WriteLog("交易数:" + dt.Rows.Count.ToString(), "领导人达标奖励日志");
  103. foreach(LeaderCompUser SubUser in UserData)
  104. {
  105. rownum += 1;
  106. function.WriteLog("rownum:" + rownum.ToString(), "领导人达标奖励日志");
  107. int UserId = SubUser.UserId;
  108. function.WriteLog("UserId:" + UserId.ToString(), "领导人达标奖励日志");
  109. decimal TradeAmount = SubUser.Amt;
  110. int ParentUserId = SubUser.ParentUserId;
  111. string ParentNav = SubUser.ParentNav;
  112. int LeaderType = SubUser.LeaderType;
  113. sql += "insert into LeaderCompTradeStat (LeaderType,ParentNav,ParentUserId,TradeAmount,StatMonth,UserId,CreateDate) values (" + LeaderType + ", '" + ParentNav + "', " + ParentUserId + ", " + TradeAmount + ", '" + month + "', " + UserId + ",now());\n";
  114. num += 1;
  115. if(num >= 200)
  116. {
  117. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  118. sql = "";
  119. num = 0;
  120. }
  121. }
  122. if(!string.IsNullOrEmpty(sql))
  123. {
  124. CustomerSqlConn.op(sql, MysqlConn.SqlConnStr);
  125. }
  126. //计算创客名下的达标人数,直推和间接
  127. function.WriteLog("MonthString:" + MonthString, "领导人达标奖励日志");
  128. //计算达标市场
  129. DataTable tmps = CustomerSqlConn.dtable("select id,pid,pid_path from kxs_user where id in ((select user_id from kxs_user_trade_info where trade_month='" + month + "' and is_vip=1))", MysqlConn.JavaUserSqlConnStr);
  130. function.WriteLog(tmps.Rows.Count.ToString(), "领导人达标奖励日志");
  131. foreach(DataRow stat in tmps.Rows)
  132. {
  133. int UserId = int.Parse(function.CheckInt(stat["id"].ToString()));
  134. int ParentUserId = int.Parse(function.CheckInt(stat["pid"].ToString()));
  135. string ParentNav = stat["pid_path"].ToString();
  136. LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
  137. if(tmp == null)
  138. {
  139. tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
  140. {
  141. Id = UserId,
  142. ParentUserId = ParentUserId,
  143. ParentNav = ParentNav
  144. }).Entity;
  145. db.SaveChanges();
  146. }
  147. tmp.EveryMonthData = "1";
  148. db.SaveChanges();
  149. }
  150. // List<LeaderCompTradeStat> stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList();
  151. 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 + "'", MysqlConn.SqlConnStr);
  152. function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志");
  153. string sqlString = "";
  154. foreach(DataRow stat in stats.Rows)
  155. {
  156. int UserId = int.Parse(function.CheckInt(stat["UserId"].ToString()));
  157. int ParentUserId = int.Parse(function.CheckInt(stat["ParentUserId"].ToString()));
  158. int LeaderType = int.Parse(function.CheckInt(stat["LeaderType"].ToString()));
  159. decimal totalAmount = decimal.Parse(function.CheckNum(stat["TradeAmount"].ToString()));
  160. decimal bigTradeAmount = decimal.Parse(function.CheckNum(stat["BigTradeAmount"].ToString()));
  161. decimal smallTradeAmount = totalAmount - bigTradeAmount;
  162. int BigCount = int.Parse(function.CheckInt(stat["BigCount"].ToString()));
  163. int SmallCount = int.Parse(function.CheckInt(stat["SmallCount"].ToString()));
  164. int LeaderCount = int.Parse(function.CheckInt(stat["LeaderCount"].ToString()));
  165. int OperaterCount = int.Parse(function.CheckInt(stat["OperaterCount"].ToString()));
  166. string ParentNav = stat["ParentNav"].ToString();
  167. //计算达标市场
  168. // if((BigCount == 1 && smallTradeAmount >= 12000000) || BigCount >= 2 || smallTradeAmount >= 30000000)
  169. // {
  170. // LeaderCompTmp tmp = db.LeaderCompTmp.FirstOrDefault(m => m.Id == UserId);
  171. // if(tmp == null)
  172. // {
  173. // tmp = db.LeaderCompTmp.Add(new LeaderCompTmp()
  174. // {
  175. // Id = UserId,
  176. // ParentUserId = ParentUserId,
  177. // ParentNav = ParentNav
  178. // }).Entity;
  179. // db.SaveChanges();
  180. // }
  181. // tmp.EveryMonthData = "1";
  182. // db.SaveChanges();
  183. // }
  184. //培养奖
  185. if(smallTradeAmount < 30000000) BigCount -= 1;
  186. if(BigCount > 0)
  187. {
  188. // decimal leaderOnePrize = 2500;
  189. // decimal operaterOnePrize = 3000;
  190. decimal onePrize = 0;
  191. if(BigCount == 1) onePrize = 2000;
  192. if(BigCount == 2) onePrize = 2500;
  193. if(LeaderType == 2) onePrize = 2500;
  194. if(BigCount == 3)
  195. {
  196. onePrize = 3000;
  197. // leaderOnePrize = 3000;
  198. }
  199. if(LeaderType > 2) onePrize = 3000;
  200. if(BigCount == 4)
  201. {
  202. onePrize = 4000;
  203. // leaderOnePrize = 4000;
  204. // operaterOnePrize = 4000;
  205. }
  206. if(BigCount == 5)
  207. {
  208. onePrize = 5000;
  209. // leaderOnePrize = 5000;
  210. // operaterOnePrize = 5000;
  211. }
  212. if(BigCount >= 6)
  213. {
  214. onePrize = 6000;
  215. // leaderOnePrize = 6000;
  216. // operaterOnePrize = 6000;
  217. }
  218. // decimal tradePrize = onePrize * (BigCount - LeaderCount - OperaterCount) + LeaderCount * leaderOnePrize + OperaterCount * operaterOnePrize; //培养奖金额
  219. decimal tradePrize = onePrize * BigCount; //培养奖金额
  220. sqlString += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (0," + totalAmount + "," + tradePrize + ",now(),'" + MonthString + "'," + UserId + ");";
  221. }
  222. }
  223. db.SaveChanges();
  224. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  225. CustomerSqlConn.op(sqlString, MysqlConn.JavaUserSqlConnStr);
  226. }
  227. catch(Exception ex)
  228. {
  229. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "领导达标人奖励异常");
  230. }
  231. }
  232. private void SendPrize(string month)
  233. {
  234. string sql = "";
  235. string MonthFlag = month;
  236. WebCMSEntities db = new WebCMSEntities();
  237. DataTable dt = CustomerSqlConn.dtable("select * from (select UserId,ParentUserId,ParentNav,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigCount from LeaderCompTradeStat p where StatMonth='" + month + "' and LeaderType>=2) tb where BigCount>0", MysqlConn.SqlConnStr);
  238. foreach(DataRow dr in dt.Rows)
  239. {
  240. int UserId = int.Parse(function.CheckInt(dr["UserId"].ToString()));
  241. function.WriteLog(UserId.ToString(), "核对");
  242. string ParentNav = dr["ParentNav"].ToString();
  243. int Count = int.Parse(function.CheckInt(dr["BigCount"].ToString()));
  244. function.WriteLog(Count.ToString(), "核对");
  245. LeaderCompPrize edit = db.LeaderCompPrize.FirstOrDefault(m => m.StatMonth == MonthFlag && m.UserId == UserId);
  246. if(edit == null)
  247. {
  248. edit = db.LeaderCompPrize.Add(new LeaderCompPrize()
  249. {
  250. CreateDate = DateTime.Now,
  251. StatMonth = MonthFlag,
  252. UserId = UserId,
  253. }).Entity;
  254. db.SaveChanges();
  255. }
  256. edit.DirectCount = Count; //达标市场
  257. DataTable dtsub = CustomerSqlConn.dtable("select UserId from LeaderCompTradeStat where ParentUserId=" + UserId, MysqlConn.SqlConnStr);
  258. foreach(DataRow drsub in dtsub.Rows)
  259. {
  260. int SubCount = 0;
  261. DataTable subuser = CustomerSqlConn.dtable("select count(1) from LeaderCompTmp where Id=" + drsub["UserId"].ToString() + " or ParentNav like '%," + drsub["UserId"].ToString() + ",%'", MysqlConn.SqlConnStr);
  262. if(subuser.Rows.Count > 0)
  263. {
  264. SubCount = int.Parse(function.CheckInt(subuser.Rows[0][0].ToString()));
  265. }
  266. function.WriteLog("SubCount:" + SubCount, "核对");
  267. edit.NotDirectCount += SubCount; //深度达标总数
  268. if(SubCount > Count)
  269. {
  270. SubCount = Count;
  271. }
  272. edit.SecDirectCount += SubCount; //深度达标计奖数
  273. }
  274. function.WriteLog(edit.SecDirectCount.ToString(), "核对");
  275. decimal CompPrize = edit.SecDirectCount * 1000;
  276. edit.CompPrize = CompPrize;
  277. db.SaveChanges();
  278. LeaderCompTradeStat stat = db.LeaderCompTradeStat.FirstOrDefault(m => m.UserId == UserId) ?? new LeaderCompTradeStat();
  279. if(stat.LeaderType > 1 && CompPrize > 0)
  280. {
  281. sql += "insert into kxs_shd_leader (shd_type,trade_amt,source_bonus_amt,create_time,trade_month,user_id) values (1," + stat.TradeAmount + "," + CompPrize + ",now(),'" + MonthFlag + "'," + UserId + ");";
  282. }
  283. }
  284. CustomerSqlConn.op(sql, MysqlConn.JavaUserSqlConnStr);
  285. function.WriteLog(DateTime.Now.ToString(), "领导人达标奖励日志");
  286. db.Dispose();
  287. }
  288. }
  289. }