LeaderCompPrizeHelper.cs 18 KB

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