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