LeaderCompPrize2Helper.cs 16 KB

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