LeaderCompPrizeHelper.cs 18 KB

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