AlipayPayBack2Service.cs 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Data;
  5. using MySystem.PxcModels;
  6. using Library;
  7. using LitJson;
  8. namespace MySystem
  9. {
  10. public class AlipayPayBack2Service
  11. {
  12. public readonly static AlipayPayBack2Service Instance = new AlipayPayBack2Service();
  13. private AlipayPayBack2Service()
  14. { }
  15. public void Start(JobMqMsg jobInfo)
  16. {
  17. string content = "";
  18. try
  19. {
  20. dosomething();
  21. // string Msg = "success";
  22. // jobInfo.Status = Msg == "success" ? 1 : 0;
  23. // jobInfo.Msg = Msg == "success" ? "执行完成" : Msg;
  24. // RabbitMQClient.Instance.SendMsg(Newtonsoft.Json.JsonConvert.SerializeObject(jobInfo), "PublicBack");
  25. }
  26. catch (Exception ex)
  27. {
  28. if (!string.IsNullOrEmpty(content))
  29. {
  30. Dictionary<string, string> data = new Dictionary<string, string>();
  31. data.Add("ErrTime", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
  32. data.Add("ErrMsg", ex.ToString());
  33. function.WriteLog(Newtonsoft.Json.JsonConvert.SerializeObject(data), "public_err");
  34. }
  35. else
  36. {
  37. function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "商城订单支付回调异常");
  38. }
  39. }
  40. }
  41. private void dosomething()
  42. {
  43. bool op = true;
  44. while (op)
  45. {
  46. string content = RedisDbconn.Instance.RPop<string>("PayCallBack2");
  47. if (!string.IsNullOrEmpty(content))
  48. {
  49. sloveAlipayCallBack(content);
  50. }
  51. else
  52. {
  53. op = false;
  54. }
  55. }
  56. }
  57. public void sloveAlipayCallBack(string content)
  58. {
  59. JsonData jsonObj = JsonMapper.ToObject(content);
  60. string OrderNo = jsonObj["out_trade_no"].ToString();
  61. string TradeNo = jsonObj["transaction_id"].ToString();
  62. decimal TotalFee = decimal.Parse(function.CheckNum(jsonObj["total_fee"].ToString()));
  63. WebCMSEntities db = new WebCMSEntities();
  64. OrderForNo forNo = db.OrderForNo.FirstOrDefault(m => m.OrderNo == OrderNo);
  65. if (forNo != null)
  66. {
  67. string[] ids = forNo.OrderIds.Split(',');
  68. foreach (string idString in ids)
  69. {
  70. int OrderId = int.Parse(idString);
  71. DoOrderV2(db, OrderId);
  72. }
  73. }
  74. db.Dispose();
  75. }
  76. #region 新订单流程
  77. public void DoOrderV2(WebCMSEntities db, int OrderId)
  78. {
  79. Orders order = db.Orders.FirstOrDefault(m => m.Id == OrderId && m.Status <= 0);
  80. if (order != null)
  81. {
  82. order.Status = 1;
  83. order.PayDate = DateTime.Now;
  84. order.PayStatus = 1;
  85. db.SaveChanges();
  86. if(order.ParentOrderId > 0)
  87. {
  88. int total = db.Orders.Count(m => m.ParentOrderId == order.ParentOrderId);
  89. int paycount = db.Orders.Count(m => m.ParentOrderId == order.ParentOrderId && m.Status > 0);
  90. if(paycount >= total)
  91. {
  92. // order = db.Orders.FirstOrDefault(m => m.Id == order.ParentOrderId && m.Status == 0);
  93. // if (order != null)
  94. // {
  95. // order.Status = 2;
  96. // order.PayDate = DateTime.Now;
  97. // order.PayStatus = 1;
  98. // OrderId = order.Id;
  99. // }
  100. DoOrderV2(db, order.ParentOrderId);
  101. }
  102. return;
  103. }
  104. OrderProduct pro = db.OrderProduct.FirstOrDefault(m => m.OrderId == OrderId);
  105. if (pro != null)
  106. {
  107. order.ProductId = pro.ProductId;
  108. //扣减对应商品的库存
  109. Products product = db.Products.FirstOrDefault(m => m.Id == pro.ProductId);
  110. if(product != null)
  111. {
  112. product.Stock -= pro.ProductCount;
  113. product.BuyCount += pro.ProductCount;
  114. }
  115. db.SaveChanges();
  116. if(order.ErpMode > 0)
  117. {
  118. pro.ProductId = order.ProductId;
  119. }
  120. List<int> couponIds = new List<int>();
  121. if (pro.ProductId == 10 || pro.ProductId == 11 || pro.ProductId == 27 || pro.ProductId == 28 || pro.ProductId == 34 || pro.ProductId == -2)
  122. {
  123. order.Status = 2;
  124. int BuyCount = pro.ProductCount;
  125. int Kind = 0;
  126. int BeforeLeaderLevel = 0;
  127. if (pro.ProductId == 10 || pro.ProductId == 34)
  128. {
  129. Kind = 1;
  130. }
  131. else if (pro.ProductId == 11 || pro.ProductId == -2)
  132. {
  133. Kind = 2;
  134. }
  135. else if (pro.ProductId == 28)
  136. {
  137. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId && m.LeaderLevel == 0);
  138. if(user != null)
  139. {
  140. BeforeLeaderLevel = user.LeaderLevel;
  141. user.LeaderLevel = 1;
  142. }
  143. }
  144. else if (pro.ProductId == 27)
  145. {
  146. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId && m.LeaderLevel < 2);
  147. if(user != null)
  148. {
  149. BeforeLeaderLevel = user.LeaderLevel;
  150. user.LeaderLevel = 2;
  151. }
  152. }
  153. if(Kind <= 2 && (pro.ProductId == 10 || pro.ProductId == 11 || pro.ProductId == 34 || pro.ProductId == -2))
  154. {
  155. // 购买600一组机具券,返券
  156. int CouponCount = 0;
  157. if(Kind == 1)
  158. {
  159. CouponCount = 3 * pro.ProductCount;
  160. }
  161. else if(Kind == 2)
  162. {
  163. CouponCount = 2 * pro.ProductCount;
  164. }
  165. string Codes = "";
  166. var coupons = db.PosCoupons.Where(m => m.IsLock == 0 && m.IsUse == 0 && m.UserId == 0 && m.QueryCount == Kind).OrderBy(m => m.Id).Take(CouponCount).ToList();
  167. int RecordId = 0;
  168. if(coupons.Count > 0 && (pro.ProductId == 34 || pro.ProductId == -2))
  169. {
  170. var adds = db.HelpProfitExchange.Add(new HelpProfitExchange()
  171. {
  172. CreateDate = DateTime.Now, //创建时间
  173. UserId = order.UserId,
  174. ExchangeCount = coupons.Count,
  175. }).Entity;
  176. db.SaveChanges();
  177. RecordId = adds.Id;
  178. }
  179. foreach (var coupon in coupons) // TODO: 数量多的话,会慢
  180. {
  181. PosCoupons item = db.PosCoupons.FirstOrDefault(m => m.Id == coupon.Id);
  182. if (item != null)
  183. {
  184. item.CreateDate = DateTime.Now;
  185. item.UserId = order.UserId;
  186. item.UpdateDate = DateTime.Now.AddDays(180);
  187. if(pro.ProductId == 34 || pro.ProductId == -2)
  188. {
  189. item.HelpProfitFlag = 1;
  190. db.HelpProfitExchangeDetail.Add(new HelpProfitExchangeDetail()
  191. {
  192. CreateDate = DateTime.Now, //创建时间
  193. UserId = order.UserId,
  194. PosCouponId = item.Id,
  195. ExchangeCode = item.ExchangeCode,
  196. RecordId = RecordId,
  197. });
  198. }
  199. Codes += item.ExchangeCode + ",";
  200. couponIds.Add(coupon.Id);
  201. }
  202. }
  203. order.SnNos = Codes.TrimEnd(',');
  204. }
  205. db.SaveChanges();
  206. if (pro.ProductId == 27 || pro.ProductId == 28)
  207. {
  208. //充值盟主储备金
  209. decimal TotalPrice = 10000;
  210. if(pro.ProductId == 27)
  211. {
  212. TotalPrice = 40000;
  213. }
  214. OpReserve(db, order, order.UserId, TotalPrice, 1);
  215. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId) ?? new Users();
  216. if(pro.ProductId == 27)
  217. {
  218. OperateReserveBackFor(db, user.Id, 40000);
  219. //预设大盟主职级
  220. LeaderPreUserLevel(db, order.UserId, 2);
  221. decimal Prize = decimal.Parse(function.CheckNum(PublicFunction.GetPublicParam(db, "BigLeaderPrize")));
  222. if(Prize > 0 && BeforeLeaderLevel < 2 && user.UserType == 0)
  223. {
  224. LeaderRecommendPrize(db, order, user.Id, Prize, 122);
  225. }
  226. }
  227. }
  228. if (pro.ProductId == 28) //购买小盟主,给上级大盟主返储备金
  229. {
  230. bool check = LeaderBack(db, order);
  231. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId) ?? new Users();
  232. if (check) OperateReserveBackFor(db, user.Id, 10000);
  233. //预设小盟主职级
  234. LeaderPreUserLevel(db, order.UserId, 1);
  235. decimal Prize = decimal.Parse(function.CheckNum(PublicFunction.GetPublicParam(db, "SmallLeaderPrize")));
  236. if(Prize > 0 && BeforeLeaderLevel < 1 && user.UserType == 0)
  237. {
  238. LeaderRecommendPrize(db, order, user.Id, Prize, 123);
  239. }
  240. }
  241. }
  242. // 购买盟主储蓄金
  243. if (pro.ProductId == 39 || pro.ProductId == 40)
  244. {
  245. order.Status = 2;
  246. //充值盟主储备金
  247. decimal TotalPrice = 10000;
  248. if(pro.ProductId == 39)
  249. {
  250. TotalPrice = 40000;
  251. }
  252. OpReserve(db, order, order.UserId, TotalPrice, 1);
  253. }
  254. //推荐下单奖励
  255. if (pro.ProductId == 10 || pro.ProductId == 11)
  256. {
  257. bool checkPrize = db.UserAccountRecord.Any(m => m.QueryCount == OrderId && m.ChangeType == 112);
  258. function.WriteLog("OrderId:" + OrderId, "推荐下单奖励监控日志");
  259. function.WriteLog("checkPrize:" + checkPrize, "推荐下单奖励监控日志");
  260. if (checkPrize)
  261. {
  262. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
  263. if (user != null)
  264. {
  265. if(user.LeaderLevel > 0 || user.UserType == 1) //盟主或运营中心
  266. {
  267. //获得100元奖励
  268. OpAccount(db, order, order.UserId, 100, pro.ProductCount);
  269. }
  270. }
  271. }
  272. else
  273. {
  274. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
  275. if (user != null)
  276. {
  277. bool directPrize = false; //直推奖标记
  278. bool bigLeaderPrize = false; //大盟主券标记
  279. bool operateFlag = false; //运营中心标记
  280. bool buyPrize = false; //返100购机奖励标记或返100购机奖励标记-运营中心
  281. int leaderFlag = 0; //返600备用金标记
  282. if(user.LeaderLevel > 0 || user.UserType == 1) //盟主或运营中心
  283. {
  284. if(user.LeaderLevel > 0)
  285. {
  286. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
  287. if(acccount.LeaderReserve >= order.TotalPrice)
  288. {
  289. if(order.PayMode == 4)
  290. {
  291. //扣减备用金
  292. OpReserve(db, order, order.UserId, order.TotalPrice, 0, 0, "商城购机(储备金支付)");
  293. }
  294. }
  295. }
  296. //获得100元奖励
  297. OpAccount(db, order, order.UserId, 100, pro.ProductCount);
  298. //推荐奖励
  299. DirectPrize(db, order.Id, order.UserId, pro.ProductCount);
  300. //推荐下单上级获得30天的机具循环天数(盟主自己得)
  301. var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == order.UserId && m.BindingState == 0 && m.RecycEndDate != null).ToList();
  302. foreach (var subPos in posList)
  303. {
  304. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == subPos.Id);
  305. if (pos != null)
  306. {
  307. pos.RecycEndDate = pos.RecycEndDate.Value.AddDays(30);
  308. }
  309. }
  310. db.SaveChanges();
  311. if(order.PayMode == 4 && user.LeaderLevel > 0) //使用盟主储蓄金,并且是盟主
  312. {
  313. if(user.UserType == 1)
  314. {
  315. if(couponIds.Count > 0)
  316. {
  317. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == user.Id) ?? new UserAccount();
  318. foreach(int couponId in couponIds)
  319. {
  320. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  321. if(coupon != null)
  322. {
  323. if(acccount.LeaderReserve >= 400 * pro.ProductCount)
  324. {
  325. coupon.LeaderUserId = user.Id;
  326. }
  327. coupon.OpId = user.Id;
  328. }
  329. }
  330. }
  331. db.SaveChanges();
  332. }
  333. else
  334. {
  335. //寻找最近运营中心额度大于0的运营中心
  336. int PUserId = user.Id;
  337. bool OperateFlag = true;
  338. bool OncePrizeFlag1 = true;
  339. while(PUserId > 0)
  340. {
  341. Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
  342. if(puser != null)
  343. {
  344. if(puser.UserType == 1 && OperateFlag == true) //运营中心
  345. {
  346. if(couponIds.Count > 0)
  347. {
  348. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
  349. foreach(int couponId in couponIds)
  350. {
  351. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  352. if(coupon != null)
  353. {
  354. if(acccount.LeaderReserve >= 400 * pro.ProductCount)
  355. {
  356. coupon.LeaderUserId = user.Id;
  357. }
  358. coupon.OpId = puser.Id;
  359. }
  360. }
  361. db.SaveChanges();
  362. if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag1)
  363. {
  364. //扣减备用金
  365. OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
  366. //返回到余额
  367. OpLeaderAccount(db, order, order.UserId, 400, pro.ProductCount);
  368. OncePrizeFlag1 = false;
  369. }
  370. OperateFlag = false;
  371. }
  372. }
  373. PUserId = puser.ParentUserId;
  374. }
  375. else
  376. {
  377. PUserId = 0;
  378. }
  379. }
  380. }
  381. }
  382. else if(order.PayMode == 4 && user.UserType == 1) //使用盟主储蓄金,并且是运营中心
  383. {
  384. if(couponIds.Count > 0)
  385. {
  386. foreach(int couponId in couponIds)
  387. {
  388. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  389. if(coupon != null)
  390. {
  391. coupon.OpId = user.Id;
  392. }
  393. }
  394. }
  395. db.SaveChanges();
  396. //寻找最近储蓄金充足的大盟主
  397. int PUserId = user.Id;
  398. bool LeaderFlag = true;
  399. bool OncePrizeFlag2 = true;
  400. while(PUserId > 0)
  401. {
  402. Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
  403. if(puser != null)
  404. {
  405. if(puser.LeaderLevel == 2 && LeaderFlag == true) //大盟主
  406. {
  407. if(couponIds.Count > 0)
  408. {
  409. UserAccount pacccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
  410. foreach(int couponId in couponIds)
  411. {
  412. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  413. if(coupon != null && pacccount.LeaderReserve >= 400 * pro.ProductCount)
  414. {
  415. coupon.LeaderUserId = puser.Id;
  416. }
  417. }
  418. db.SaveChanges();
  419. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == order.UserId) ?? new UserAccount();
  420. if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag2)
  421. {
  422. //扣减备用金
  423. OpReserve(db, order, order.UserId, 400 * pro.ProductCount, 2, 0, "商城购机");
  424. //返回到余额
  425. OpLeaderAccount(db, order, order.UserId, 400, pro.ProductCount);
  426. OncePrizeFlag2 = false;
  427. }
  428. LeaderFlag = false;
  429. }
  430. }
  431. PUserId = puser.ParentUserId;
  432. }
  433. else
  434. {
  435. PUserId = 0;
  436. }
  437. }
  438. }
  439. else
  440. {
  441. //寻找最近储蓄金充足的大盟主及最近运营中心额度大于0的运营中心(含自身)
  442. int PUserId = user.Id;
  443. int LeaderFlag = 0;
  444. bool OperateFlag = true;
  445. bool OncePrizeFlag3 = true;
  446. while(PUserId > 0)
  447. {
  448. Users puser = db.Users.FirstOrDefault(m => m.Id == PUserId);
  449. if(puser != null)
  450. {
  451. if(puser.LeaderLevel > 0 && puser.LeaderLevel > LeaderFlag && LeaderFlag < 2) //大盟主
  452. {
  453. if(couponIds.Count > 0)
  454. {
  455. if(puser.LeaderLevel == 2)
  456. {
  457. UserAccount pacccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
  458. foreach(int couponId in couponIds)
  459. {
  460. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  461. if(coupon != null && pacccount.LeaderReserve >= 400 * pro.ProductCount)
  462. {
  463. coupon.LeaderUserId = puser.Id;
  464. }
  465. }
  466. db.SaveChanges();
  467. }
  468. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
  469. if(acccount.LeaderReserve >= 400 * pro.ProductCount && OncePrizeFlag3)
  470. {
  471. //扣减备用金
  472. OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, 0, "商城购机");
  473. //返回到余额
  474. OpLeaderAccount(db, order, puser.Id, 400, pro.ProductCount);
  475. LeaderFlag = puser.LeaderLevel;
  476. OncePrizeFlag3 = false;
  477. }
  478. }
  479. }
  480. if(puser.UserType == 1 && OperateFlag == true) //运营中心
  481. {
  482. if(couponIds.Count > 0)
  483. {
  484. foreach(int couponId in couponIds)
  485. {
  486. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  487. if(coupon != null)
  488. {
  489. coupon.OpId = puser.Id;
  490. }
  491. }
  492. db.SaveChanges();
  493. OperateFlag = false;
  494. }
  495. }
  496. PUserId = puser.ParentUserId;
  497. }
  498. else
  499. {
  500. PUserId = 0;
  501. }
  502. }
  503. //运营中心返额度(下单人自己是运营中心)
  504. // OperateReserveBackFor(db, order.UserId, order.TotalPrice);
  505. }
  506. return;
  507. }
  508. int ParentUserId = user.ParentUserId;
  509. // List<int> proids = new List<int>();
  510. // proids.Add(10);
  511. // proids.Add(11);
  512. // 普通创客购买600一组的机具券
  513. bool OncePrizeFlag4 = true;
  514. while(ParentUserId > 0)
  515. {
  516. Users puser = db.Users.FirstOrDefault(m => m.Id == ParentUserId) ?? new Users();
  517. int machineCount = db.PosMachinesTwo.Count(m => m.BuyUserId == ParentUserId && m.PosSnType == 0 && m.ActivationState == 0); //判断是否拥有3台兑换机
  518. int ActiveCount = db.PosMachinesTwo.Count(m => m.BuyUserId == ParentUserId && m.ActivationState == 1); //判断是否拥有3台激活机(不限购买或赠送)
  519. int couponCount = db.PosCoupons.Count(m => m.UserId == ParentUserId && m.IsUse == 0); //判断是否拥有3张券
  520. function.WriteLog("MakerCode:" + puser.MakerCode, "推荐下单奖励监控日志");
  521. function.WriteLog("machineCount:" + machineCount, "推荐下单奖励监控日志");
  522. function.WriteLog("ActiveCount:" + ActiveCount, "推荐下单奖励监控日志");
  523. if ((machineCount + ActiveCount + couponCount >= 3 || puser.LeaderLevel > 0) && !directPrize)
  524. {
  525. // function.WriteLog("满足条件", "推荐下单奖励监控日志");
  526. // if(puser.LeaderLevel == 0) // 非盟主直推奖励,每个创客第一次下单,上级可得
  527. // {
  528. // List<int> oids = new List<int>();
  529. // var orderpros = db.OrderProduct.Select(m => new { m.OrderId,m.UserId,m.ProductId }).Where(m => m.UserId == order.UserId && proids.Contains(m.ProductId)).ToList();
  530. // foreach(var orderpro in orderpros)
  531. // {
  532. // oids.Add(orderpro.OrderId);
  533. // }
  534. // bool check = db.Orders.Any(m => oids.Contains(m.Id) && m.Status > 0);
  535. // if(!check)
  536. // {
  537. // DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
  538. // directPrize = true;
  539. // }
  540. // }
  541. // else
  542. // {
  543. // 盟主直推奖励,可以每次下单获得
  544. DirectPrize(db, order.Id, ParentUserId, pro.ProductCount);
  545. directPrize = true;
  546. // }
  547. //推荐下单上级获得30天的机具循环天数
  548. var posList = db.PosMachinesTwo.Select(m => new { m.Id, m.UserId, m.BindingState, m.RecycEndDate }).Where(m => m.UserId == ParentUserId && m.BindingState == 0 && m.RecycEndDate != null).ToList();
  549. foreach (var subPos in posList)
  550. {
  551. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == subPos.Id);
  552. if (pos != null)
  553. {
  554. pos.RecycEndDate = pos.RecycEndDate.Value.AddDays(30);
  555. }
  556. }
  557. db.SaveChanges();
  558. }
  559. if(puser.LeaderLevel > 0)
  560. {
  561. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
  562. if(acccount.LeaderReserve >= order.TotalPrice && !buyPrize)
  563. {
  564. //购机奖励
  565. OpAccount(db, order, puser.Id, 100, pro.ProductCount);
  566. buyPrize = true;
  567. }
  568. if(acccount.LeaderReserve >= 400 * pro.ProductCount && puser.LeaderLevel > leaderFlag && leaderFlag < 2 && OncePrizeFlag4)
  569. {
  570. //扣减备用金
  571. OpReserve(db, order, puser.Id, 400 * pro.ProductCount, 2, order.UserId, "购机奖励");
  572. //返回到余额
  573. OpLeaderAccount(db, order, puser.Id, 400, pro.ProductCount);
  574. leaderFlag = puser.LeaderLevel;
  575. OncePrizeFlag4 = false;
  576. }
  577. //如果是大盟主,则标记大盟主标签
  578. if(couponIds.Count > 0 && puser.LeaderLevel == 2 && acccount.LeaderReserve >= order.TotalPrice && !bigLeaderPrize)
  579. {
  580. foreach(int couponId in couponIds)
  581. {
  582. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  583. if(coupon != null)
  584. {
  585. coupon.LeaderUserId = puser.Id;
  586. }
  587. }
  588. db.SaveChanges();
  589. bigLeaderPrize = true;
  590. }
  591. }
  592. if(puser.UserType == 1)
  593. {
  594. UserAccount acccount = db.UserAccount.FirstOrDefault(m => m.Id == puser.Id) ?? new UserAccount();
  595. if(!buyPrize)
  596. {
  597. //购机奖励
  598. ChangeAccount(db, order, puser.Id, 100 * pro.ProductCount, 120);
  599. buyPrize = true;
  600. }
  601. //标记标签
  602. if(couponIds.Count > 0 && !operateFlag)
  603. {
  604. foreach(int couponId in couponIds)
  605. {
  606. PosCoupons coupon = db.PosCoupons.FirstOrDefault(m => m.Id == couponId);
  607. if(coupon != null)
  608. {
  609. coupon.OpId= puser.Id;
  610. }
  611. }
  612. db.SaveChanges();
  613. operateFlag = true;
  614. }
  615. }
  616. ParentUserId = puser.ParentUserId;
  617. }
  618. //运营中心返额度
  619. // OperateReserveBackFor(db, order.UserId, order.TotalPrice);
  620. }
  621. }
  622. function.WriteLog("\r\n\r\n", "推荐下单奖励监控日志");
  623. }
  624. //推荐王
  625. if(pro.ProductId == 29)
  626. {
  627. RecommendMethod(order.UserId, order.CreateDate.Value.ToString("yyyyMM"));
  628. }
  629. //购买分仓临时额度
  630. if(pro.ProductId == 30 || pro.ProductId == 31 || pro.ProductId == 32)
  631. {
  632. string SendData = "{\"Kind\":\"1\",\"Data\":{\"OrderId\":\"" + order.Id + "\"}}";
  633. RedisDbconn.Instance.AddList("StoreApplyQueue", SendData);
  634. }
  635. }
  636. else
  637. {
  638. if(order.ProductId > 0 && order.ErpMode > 0)
  639. {
  640. //盟主储备金-升级/购买 ErpMode:1-升级,2-购买
  641. if(order.ErpMode > 0)
  642. {
  643. Users user = db.Users.FirstOrDefault(m => m.Id == order.UserId);
  644. if(user != null)
  645. {
  646. if(order.ErpMode == 1)
  647. {
  648. user.LeaderLevel = 2;
  649. db.SaveChanges();
  650. }
  651. OpReserve(db, order, order.UserId, order.TotalPrice, 1);
  652. }
  653. }
  654. }
  655. }
  656. }
  657. }
  658. //小盟主购买逻辑
  659. public bool LeaderBack(WebCMSEntities db, Orders order)
  660. {
  661. int LeaderUserId = order.UserId;
  662. int level = 0;
  663. bool result = true;
  664. while(LeaderUserId > 0)
  665. {
  666. level += 1;
  667. Users user = db.Users.FirstOrDefault(m => m.Id == LeaderUserId);
  668. if(user != null)
  669. {
  670. if(user.LeaderLevel == 2 && level > 1)
  671. {
  672. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == LeaderUserId);
  673. if(account != null)
  674. {
  675. decimal TotalPrice = 10000;
  676. if(account.LeaderReserve >= TotalPrice)
  677. {
  678. OpReserve(db, order, LeaderUserId, TotalPrice, 2, 0, "推荐小盟主");
  679. OpLeaderAccount(db, order, LeaderUserId, TotalPrice);
  680. LeaderUserId = 0;
  681. result = false;
  682. }
  683. else
  684. {
  685. LeaderUserId = user.ParentUserId;
  686. // decimal LeaderReserve = account.LeaderReserve;
  687. // OpReserve(db, order, LeaderUserId, LeaderReserve, 2, 0, "推荐小盟主");
  688. // OpLeaderAccount(db, order, LeaderUserId, LeaderReserve);
  689. }
  690. }
  691. }
  692. else
  693. {
  694. LeaderUserId = user.ParentUserId;
  695. }
  696. }
  697. else
  698. {
  699. LeaderUserId = 0;
  700. }
  701. }
  702. return result;
  703. }
  704. //操作储备金
  705. public void OpReserve(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType, int SourceUserId = 0, string Remark = "储备金购买")
  706. {
  707. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  708. if (account == null)
  709. {
  710. account = db.UserAccount.Add(new UserAccount()
  711. {
  712. Id = UserId,
  713. UserId = UserId,
  714. }).Entity;
  715. db.SaveChanges();
  716. }
  717. decimal BeforeAmount = account.LeaderReserve; //变更前总金额
  718. if(ChangeType == 1)
  719. {
  720. account.LeaderReserve += Money;
  721. }
  722. else
  723. {
  724. account.LeaderReserve -= Money;
  725. }
  726. decimal AfterAmount = account.LeaderReserve; //变更后总金额
  727. LeaderReserveRecord add = db.LeaderReserveRecord.Add(new LeaderReserveRecord()
  728. {
  729. CreateDate = DateTime.Now,
  730. ChangeType = ChangeType,
  731. OrderId = order.Id,
  732. Remark = Remark,
  733. AfterAmt = AfterAmount,
  734. BeforeAmt = BeforeAmount,
  735. ChangeAmt = Money,
  736. TradeDate = DateTime.Now.ToString("yyyyMMdd"),
  737. TradeMonth = DateTime.Now.ToString("yyyyMM"),
  738. UserId = UserId,
  739. SourceUserId = SourceUserId,
  740. }).Entity;
  741. db.SaveChanges();
  742. }
  743. //操作余额
  744. public void OpAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int Count = 1)
  745. {
  746. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  747. if (account == null)
  748. {
  749. account = db.UserAccount.Add(new UserAccount()
  750. {
  751. Id = UserId,
  752. UserId = UserId,
  753. }).Entity;
  754. db.SaveChanges();
  755. }
  756. int ChangeType = 0;
  757. if(Money == 600)
  758. {
  759. ChangeType = 117;
  760. }
  761. else if(Money == 100)
  762. {
  763. ChangeType = 118;
  764. }
  765. decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
  766. decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
  767. decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
  768. account.BalanceAmount += Money * Count;
  769. account.TotalAmount += Money * Count;
  770. decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
  771. decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
  772. decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
  773. UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
  774. {
  775. CreateDate = DateTime.Now,
  776. UpdateDate = DateTime.Now,
  777. UserId = UserId, //创客
  778. ChangeType = ChangeType, //变动类型
  779. ChangeAmount = Money * Count, //变更金额
  780. BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
  781. AfterTotalAmount = AfterTotalAmount, //变更后总金额
  782. BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
  783. AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
  784. BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
  785. AfterBalanceAmount = AfterBalanceAmount, //变更后余额
  786. QueryCount = order.Id,
  787. }).Entity;
  788. db.SaveChanges();
  789. }
  790. public void ChangeAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType = 0, string Remark = "")
  791. {
  792. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  793. if (account == null)
  794. {
  795. account = db.UserAccount.Add(new UserAccount()
  796. {
  797. Id = UserId,
  798. UserId = UserId,
  799. }).Entity;
  800. db.SaveChanges();
  801. }
  802. decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
  803. decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
  804. decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
  805. account.BalanceAmount += Money;
  806. if(Money > 0)
  807. {
  808. account.TotalAmount += Money;
  809. }
  810. decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
  811. decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
  812. decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
  813. UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
  814. {
  815. CreateDate = DateTime.Now,
  816. UpdateDate = DateTime.Now,
  817. UserId = UserId, //创客
  818. ChangeType = ChangeType, //变动类型
  819. ChangeAmount = Math.Abs(Money), //变更金额
  820. BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
  821. AfterTotalAmount = AfterTotalAmount, //变更后总金额
  822. BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
  823. AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
  824. BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
  825. AfterBalanceAmount = AfterBalanceAmount, //变更后余额
  826. QueryCount = order.Id,
  827. Remark = Remark,
  828. }).Entity;
  829. db.SaveChanges();
  830. }
  831. //操作盟主可提现余额
  832. public void OpLeaderAccount(WebCMSEntities db, Orders order, int UserId, decimal Money, int Count = 1)
  833. {
  834. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  835. if (account == null)
  836. {
  837. account = db.UserAccount.Add(new UserAccount()
  838. {
  839. Id = UserId,
  840. UserId = UserId,
  841. }).Entity;
  842. db.SaveChanges();
  843. }
  844. int ChangeType = 0;
  845. if(Money == 400)
  846. {
  847. ChangeType = 117;
  848. }
  849. decimal BeforeLeaderBalanceAmount = account.LeaderBalanceAmount; //变更前余额
  850. account.LeaderBalanceAmount += Money * Count;
  851. decimal AfterLeaderBalanceAmount = account.LeaderBalanceAmount; //变更后余额
  852. LeaderAccountRecord leaderAccountRecord = db.LeaderAccountRecord.Add(new LeaderAccountRecord()
  853. {
  854. CreateDate = DateTime.Now,
  855. UpdateDate = DateTime.Now,
  856. UserId = UserId, //创客
  857. ChangeType = ChangeType, //变动类型
  858. ChangeAmount = Money * Count, //变更金额
  859. BeforeBalanceAmount = BeforeLeaderBalanceAmount, //变更前余额
  860. AfterBalanceAmount = AfterLeaderBalanceAmount, //变更后余额
  861. QueryCount = order.Id,
  862. }).Entity;
  863. db.SaveChanges();
  864. }
  865. public void DirectPrize(WebCMSEntities db, int OrderId, int UserId, int Count = 1)
  866. {
  867. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  868. if (account == null)
  869. {
  870. account = db.UserAccount.Add(new UserAccount()
  871. {
  872. Id = UserId,
  873. UserId = UserId,
  874. }).Entity;
  875. db.SaveChanges();
  876. }
  877. decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
  878. decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
  879. decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
  880. account.BalanceAmount += 100 * Count;
  881. account.TotalAmount += 100 * Count;
  882. decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
  883. decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
  884. decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
  885. UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
  886. {
  887. CreateDate = DateTime.Now,
  888. UpdateDate = DateTime.Now,
  889. UserId = UserId, //创客
  890. ChangeType = 112, //变动类型
  891. ChangeAmount = 100 * Count, //变更金额
  892. BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
  893. AfterTotalAmount = AfterTotalAmount, //变更后总金额
  894. BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
  895. AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
  896. BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
  897. AfterBalanceAmount = AfterBalanceAmount, //变更后余额
  898. QueryCount = OrderId,
  899. }).Entity;
  900. db.SaveChanges();
  901. }
  902. // 推荐王逻辑(下单)
  903. public void RecommendMethod(int UserId, string TradeMonth)
  904. {
  905. string SendData = "{\"Kind\":\"1\",\"Data\":{\"UserId\":\"" + UserId + "\",\"TradeMonth\":\"" + TradeMonth + "\"}}";
  906. RedisDbconn.Instance.AddList("RecommendActStatQueue", SendData);
  907. }
  908. //操作运营中心额度
  909. public void OperateReserveBackFor(WebCMSEntities maindb, int UserId, decimal Money)
  910. {
  911. OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
  912. while(UserId > 0)
  913. {
  914. Users user = maindb.Users.FirstOrDefault(m => m.Id == UserId);
  915. if(user != null)
  916. {
  917. bool sys = db.SysAdmin.Any(m => m.UserId == UserId);
  918. if(sys)
  919. {
  920. OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new OpModels.UserAccount();
  921. if(account.TotalAmt <= 0)
  922. {
  923. return;
  924. }
  925. if(account.TotalAmt < Money)
  926. {
  927. Money = account.TotalAmt;
  928. }
  929. if(Money > 0)
  930. {
  931. OperateAmountChange(db, UserId, Money, 2, 1, "商城购机");
  932. OperateAmountChange(db, UserId, Money, 1, 2, "商城购机");
  933. }
  934. UserId = 0;
  935. }
  936. else
  937. {
  938. UserId = user.ParentUserId;
  939. }
  940. }
  941. else
  942. {
  943. UserId = 0;
  944. }
  945. }
  946. db.Dispose();
  947. }
  948. public void OperateReserveBack(int UserId, decimal Money)
  949. {
  950. OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
  951. OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId) ?? new OpModels.UserAccount();
  952. if(account.TotalAmt <= 0)
  953. {
  954. return;
  955. }
  956. if(account.TotalAmt < Money)
  957. {
  958. Money = account.TotalAmt;
  959. }
  960. if(Money > 0)
  961. {
  962. OperateAmountChange(db, UserId, Money, 2, 1, "商城购机");
  963. OperateAmountChange(db, UserId, Money, 1, 2, "商城购机");
  964. }
  965. db.Dispose();
  966. }
  967. public void ActReserveBack(int UserId, decimal OpReserve1, decimal OpReserve2, decimal OpReserve3)
  968. {
  969. OpModels.WebCMSEntities db = new OpModels.WebCMSEntities();
  970. if(OpReserve1 > 0) OperateAmountChange(db, UserId, OpReserve1, 1, 1, "机具激活", true);
  971. if(OpReserve2 > 0) OperateAmountChange(db, UserId, OpReserve2, 1, 2, "机具激活", true);
  972. if(OpReserve3 > 0) OperateAmountChange(db, UserId, OpReserve3, 1, 3, "机具激活", true);
  973. db.Dispose();
  974. }
  975. public void OperateAmountChange(OpModels.WebCMSEntities db, int UserId, decimal Money, int OperateType, int AmountType, string Remark = "", bool record = false)
  976. {
  977. OpModels.UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  978. if (account == null)
  979. {
  980. account = db.UserAccount.Add(new OpModels.UserAccount()
  981. {
  982. Id = UserId,
  983. UserId = UserId,
  984. }).Entity;
  985. db.SaveChanges();
  986. }
  987. decimal BeforeAmount = account.ValidAmount + account.TotalAmt + account.ValidForGetAmount; //变更前总金额
  988. if(OperateType == 1)
  989. {
  990. if(AmountType == 1)
  991. {
  992. // BeforeAmount = account.TotalAmt;
  993. account.TotalAmt += Money;
  994. // AfterAmount = account.TotalAmt;
  995. }
  996. else if(AmountType == 2)
  997. {
  998. // BeforeAmount = account.ValidForGetAmount;
  999. account.ValidForGetAmount += Money;
  1000. // AfterAmount = account.ValidForGetAmount;
  1001. }
  1002. else
  1003. {
  1004. // BeforeAmount = account.ValidAmount;
  1005. account.ValidAmount += Money;
  1006. // AfterAmount = account.ValidAmount;
  1007. }
  1008. }
  1009. else
  1010. {
  1011. if(AmountType == 1)
  1012. {
  1013. // BeforeAmount = account.TotalAmt;
  1014. account.TotalAmt -= Money;
  1015. // AfterAmount = account.TotalAmt;
  1016. }
  1017. else if(AmountType == 2)
  1018. {
  1019. // BeforeAmount = account.ValidForGetAmount;
  1020. account.ValidForGetAmount -= Money;
  1021. // AfterAmount = account.ValidForGetAmount;
  1022. }
  1023. else
  1024. {
  1025. // BeforeAmount = account.ValidAmount;
  1026. account.ValidAmount -= Money;
  1027. // AfterAmount = account.ValidAmount;
  1028. }
  1029. }
  1030. decimal AfterAmount = account.ValidAmount + account.TotalAmt + account.ValidForGetAmount; //变更后总金额
  1031. if(record)
  1032. {
  1033. OpModels.AmountRecord add = db.AmountRecord.Add(new OpModels.AmountRecord()
  1034. {
  1035. CreateDate = DateTime.Now,
  1036. UpdateDate = DateTime.Now,
  1037. OperateType = OperateType,
  1038. AfterAmount = AfterAmount,
  1039. BeforeAmount = BeforeAmount,
  1040. UseAmount = Money,
  1041. UserId = UserId,
  1042. SeoDescription = Remark,
  1043. Version = AmountType,
  1044. }).Entity;
  1045. }
  1046. db.SaveChanges();
  1047. }
  1048. #endregion
  1049. #region 盟主推荐奖励
  1050. public void LeaderRecommendPrize(WebCMSEntities db, Orders order, int UserId, decimal Money, int ChangeType)
  1051. {
  1052. int level = 0;
  1053. while(UserId > 0)
  1054. {
  1055. level += 1;
  1056. Users user = db.Users.FirstOrDefault(m => m.Id == UserId);
  1057. if(user != null)
  1058. {
  1059. if((user.UserType == 1 || user.LeaderLevel > 0) && level > 1)
  1060. {
  1061. ChangeAccount(db, order, UserId, Money, ChangeType);
  1062. UserId = 0;
  1063. }
  1064. else
  1065. {
  1066. UserId = user.ParentUserId;
  1067. }
  1068. }
  1069. else
  1070. {
  1071. UserId = 0;
  1072. }
  1073. }
  1074. db.Dispose();
  1075. }
  1076. #endregion
  1077. #region 购买盟主预设职级
  1078. public void LeaderPreUserLevel(WebCMSEntities db, int UserId, int LeaderKind)
  1079. {
  1080. int Month = LeaderKind == 1 ? 6 : 12;
  1081. int Rank = LeaderKind == 1 ? 5 : 7;
  1082. UserRankWhite check = db.UserRankWhite.FirstOrDefault(m => m.Id == UserId);
  1083. if(check == null)
  1084. {
  1085. db.UserRankWhite.Add(new UserRankWhite()
  1086. {
  1087. CreateDate = DateTime.Now, //设置时间
  1088. UpdateDate = DateTime.Now.AddMonths(Month), //过期时间
  1089. Rank = Rank,
  1090. UserId = UserId, //用户
  1091. Id = UserId,
  1092. });
  1093. }
  1094. else
  1095. {
  1096. if(check.Rank < Rank)
  1097. {
  1098. check.Rank = Rank;
  1099. check.UpdateDate = DateTime.Now.AddMonths(Month);
  1100. }
  1101. else if(check.Rank == Rank && check.UpdateDate < DateTime.Now.AddMonths(Month))
  1102. {
  1103. check.UpdateDate = DateTime.Now.AddMonths(Month);
  1104. }
  1105. }
  1106. db.SaveChanges();
  1107. }
  1108. #endregion
  1109. }
  1110. }