StoreApplyHelper.cs 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading;
  4. using System.Linq;
  5. using System.Data;
  6. using MySystem;
  7. using MySystem.PxcModels;
  8. using Library;
  9. using LitJson;
  10. public class StoreApplyHelper
  11. {
  12. public readonly static StoreApplyHelper Instance = new StoreApplyHelper();
  13. private StoreApplyHelper()
  14. {
  15. }
  16. public void Start()
  17. {
  18. Thread th = new Thread(DoWorks);
  19. th.IsBackground = true;
  20. th.Start();
  21. }
  22. // 每月1号重置仓库额度
  23. // 固定额度=上月出货额度与保底额度之间的最高值
  24. // 已用额度=仓库中机具占用额度+小分仓机具占用额度+申请补货订单占用额度-小分仓中带“授”标记机具占用额度
  25. // 可用额度=重置后的固定额度+被担保额度+临时额度-已用额度
  26. private void DoWorks()
  27. {
  28. while (true)
  29. {
  30. WebCMSEntities db = new WebCMSEntities();
  31. try
  32. {
  33. if(DateTime.Now.Day <= 20 && DateTime.Now.Hour > 0 && DateTime.Now.Hour < 23)
  34. {
  35. string check = function.ReadInstance("/StoreApply/" + DateTime.Now.ToString("yyyyMM") + ".txt");
  36. if(string.IsNullOrEmpty(check))
  37. {
  38. function.WritePage("/StoreApply/", DateTime.Now.ToString("yyyyMM") + ".txt", DateTime.Now.ToString());
  39. DoSomething(db);
  40. }
  41. }
  42. }
  43. catch (Exception ex)
  44. {
  45. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "计算分仓申请机具额度异常");
  46. }
  47. db.Dispose();
  48. function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "计算分仓申请机具额度日志");
  49. Thread.Sleep(60000);
  50. }
  51. }
  52. public void ResetStoreReserve()
  53. {
  54. Thread th = new Thread(ResetStoreReserveDo);
  55. th.IsBackground = true;
  56. th.Start();
  57. }
  58. private void ResetStoreReserveDo()
  59. {
  60. while (true)
  61. {
  62. WebCMSEntities db = new WebCMSEntities();
  63. try
  64. {
  65. string data = RedisDbconn.Instance.RPop<string>("ResetStoreReserveQueue");
  66. if(!string.IsNullOrEmpty(data))
  67. {
  68. int UserId = int.Parse(data);
  69. if(UserId > 0) DoSomething(db, UserId);
  70. }
  71. else
  72. {
  73. Thread.Sleep(10000);
  74. }
  75. }
  76. catch(Exception ex)
  77. {
  78. function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "重置分仓额度异常");
  79. }
  80. db.Dispose();
  81. }
  82. }
  83. public void DoSomething(WebCMSEntities db, int UId = 0)
  84. {
  85. string connstr = Library.ConfigurationManager.AppSettings["Pxc1SqlConnStr"].ToString();
  86. Dictionary<int, decimal> dataDic = new Dictionary<int, decimal>();
  87. string pre = DateTime.Now.AddMonths(-2).ToString("yyyy-MM") + "-01 00:00:00";
  88. string start = DateTime.Now.AddMonths(-1).ToString("yyyy-MM") + "-01 00:00:00";
  89. string end = DateTime.Parse(start).AddMonths(1).ToString("yyyy-MM-dd HH:mm:ss");
  90. string condition = "";
  91. string usercondition = "";
  92. if(UId > 0)
  93. {
  94. condition = " and StoreId in (select Id from StoreHouse where UserId=" + UId + ")";
  95. usercondition = " and UserId=" + UId;
  96. }
  97. //上月出货额度
  98. DataTable dt = CustomerSqlConn.dtable("select StoreId,count(Id) from StoreStockChange where Id>=528358 and CreateDate>='" + start + "' and CreateDate<'" + end + "' and BrandId in (select Id from KqProducts where Kind=1) and BrandId!=14 and TransType in (10,11,2) and StoreId>0" + condition + " group by StoreId", connstr);
  99. foreach(DataRow dr in dt.Rows)
  100. {
  101. int StoreId = int.Parse(function.CheckInt(dr["StoreId"].ToString()));
  102. int Count = int.Parse(function.CheckInt(dr[1].ToString()));
  103. decimal AmountMore = Count * 200;
  104. StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId) ?? new StoreHouse();
  105. if(!dataDic.ContainsKey(store.UserId))
  106. {
  107. dataDic.Add(store.UserId, AmountMore);
  108. }
  109. else
  110. {
  111. dataDic[store.UserId] += AmountMore;
  112. }
  113. }
  114. dt = CustomerSqlConn.dtable("select StoreId,count(Id) from StoreStockChange where Id>=528358 and CreateDate>='" + start + "' and CreateDate<'" + end + "' and BrandId in (select Id from KqProducts where Kind=2) and BrandId!=14 and TransType in (10,11,2) and StoreId>0" + condition + " group by StoreId", connstr);
  115. foreach(DataRow dr in dt.Rows)
  116. {
  117. int StoreId = int.Parse(function.CheckInt(dr["StoreId"].ToString()));
  118. int Count = int.Parse(function.CheckInt(dr[1].ToString()));
  119. decimal AmountMore = Count * 300;
  120. StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId) ?? new StoreHouse();
  121. if(!dataDic.ContainsKey(store.UserId))
  122. {
  123. dataDic.Add(store.UserId, AmountMore);
  124. }
  125. else
  126. {
  127. dataDic[store.UserId] += AmountMore;
  128. }
  129. }
  130. //上月没出货的创库
  131. string ids = "0";
  132. foreach(int UserId in dataDic.Keys)
  133. {
  134. ids += "," + UserId;
  135. }
  136. DataTable dts = CustomerSqlConn.dtable("select distinct UserId from StoreHouse where UserId not in (" + ids + ")" + usercondition + " and Status>-1", connstr);
  137. foreach(DataRow dr in dts.Rows)
  138. {
  139. int UserId = int.Parse(function.CheckInt(dr[0].ToString()));
  140. if(!dataDic.ContainsKey(UserId))
  141. {
  142. dataDic.Add(UserId, 0);
  143. }
  144. }
  145. foreach(int UserId in dataDic.Keys)
  146. {
  147. decimal Amount = dataDic[UserId];
  148. //上月出货额度与保底额度之间取较高值,保底额度为押金的两倍
  149. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  150. if (account == null)
  151. {
  152. account = db.UserAccount.Add(new UserAccount()
  153. {
  154. Id = UserId,
  155. UserId = UserId,
  156. }).Entity;
  157. db.SaveChanges();
  158. }
  159. decimal StoreDeposit = account.StoreDeposit;
  160. if(Amount < StoreDeposit * 2)
  161. {
  162. Amount = StoreDeposit * 2;
  163. }
  164. //被担保额度
  165. decimal PromissAmount = 0;
  166. dt = CustomerSqlConn.dtable("select PromissAmount from StoreHouseAmountPromiss where ToUserId=" + UserId + " and Status=1", connstr);
  167. foreach(DataRow dr in dt.Rows)
  168. {
  169. PromissAmount += decimal.Parse(function.CheckNum(dr["PromissAmount"].ToString()));
  170. }
  171. decimal AmountMore = 0;
  172. //仓库中机具占用额度+小分仓机具占用额度
  173. DataTable dtmore = CustomerSqlConn.dtable("select count(Id)*200 from PosMachinesTwo pos where StoreId in (select Id from StoreHouse where UserId=" + UserId + " and Sort=0) and BuyUserId=0 and BrandId in (select Id from KqProducts where Kind=1) and BrandId!=14 and `Status`>-1", connstr);
  174. if(dtmore.Rows.Count > 0)
  175. {
  176. AmountMore += decimal.Parse(function.CheckNum(dtmore.Rows[0][0].ToString()));
  177. }
  178. dtmore = CustomerSqlConn.dtable("select count(Id)*300 from PosMachinesTwo pos where StoreId in (select Id from StoreHouse where UserId=" + UserId + " and Sort=0) and BuyUserId=0 and BrandId in (select Id from KqProducts where Kind=2) and BrandId!=14 and `Status`>-1", connstr);
  179. if(dtmore.Rows.Count > 0)
  180. {
  181. AmountMore += decimal.Parse(function.CheckNum(dtmore.Rows[0][0].ToString()));
  182. }
  183. //除开小分仓中带“授”标记机具占用额度
  184. dtmore = CustomerSqlConn.dtable("select count(Id)*200 from PreSendStockDetail pos where FromStoreId in (select Id from StoreHouse where UserId=" + UserId + " and Sort=0) and BrandId in (select Id from KqProducts where Kind=1) and BrandId!=14 and AuthFlag=1 and ApplyFlag=0 and `Status`>-1 and `Status`<2", connstr);
  185. if(dtmore.Rows.Count > 0)
  186. {
  187. AmountMore -= decimal.Parse(function.CheckNum(dtmore.Rows[0][0].ToString()));
  188. }
  189. dtmore = CustomerSqlConn.dtable("select count(Id)*300 from PreSendStockDetail pos where FromStoreId in (select Id from StoreHouse where UserId=" + UserId + " and Sort=0) and BrandId in (select Id from KqProducts where Kind=2) and BrandId!=14 and AuthFlag=1 and ApplyFlag=0 and `Status`>-1 and `Status`<2", connstr);
  190. if(dtmore.Rows.Count > 0)
  191. {
  192. AmountMore -= decimal.Parse(function.CheckNum(dtmore.Rows[0][0].ToString()));
  193. }
  194. //申请补货订单占用额度
  195. dt = CustomerSqlConn.dtable("select UseAmount from StoreMachineApply where UserId=" + UserId + " and Status=0", connstr);
  196. foreach(DataRow dr in dt.Rows)
  197. {
  198. AmountMore += decimal.Parse(function.CheckNum(dr["UseAmount"].ToString()));
  199. }
  200. account.FixedAmount = Amount;
  201. account.ValidAmount = Amount + PromissAmount + account.TempAmount + account.TempAmountForBalance - AmountMore;
  202. function.WriteLog("UserId:" + UserId + ";FixedAmount:" + account.FixedAmount + ";AmountMore:" + AmountMore + ";ValidAmount:" + account.ValidAmount, "计算分仓申请机具额度日志");
  203. }
  204. db.SaveChanges();
  205. }
  206. public void StartEverTime()
  207. {
  208. Thread th = new Thread(StartEverTimeDo);
  209. th.IsBackground = true;
  210. th.Start();
  211. }
  212. private void StartEverTimeDo()
  213. {
  214. while (true)
  215. {
  216. WebCMSEntities db = new WebCMSEntities();
  217. try
  218. {
  219. string data = RedisDbconn.Instance.RPop<string>("StoreApplyQueue");
  220. if(!string.IsNullOrEmpty(data))
  221. {
  222. function.WriteLog("data:" + data, "分仓向总仓申请机具日志");
  223. List<KqProducts> brands = db.KqProducts.ToList();
  224. JsonData jsonObj = JsonMapper.ToObject(data);
  225. if(jsonObj["Kind"].ToString() == "1") // 购买临时额度
  226. {
  227. int OrderId = int.Parse(jsonObj["Data"]["OrderId"].ToString());
  228. Orders order = db.Orders.FirstOrDefault(m => m.Id == OrderId);
  229. if(order != null)
  230. {
  231. decimal TotalPrice = order.TotalPrice * 2;
  232. AddAmount2(db, 1, order.UserId, TotalPrice, order.PayMode, 1, order.Id);
  233. }
  234. }
  235. else if(jsonObj["Kind"].ToString() == "2") // 增减分仓临时额度
  236. {
  237. int UserId = int.Parse(jsonObj["Data"]["UserId"].ToString());
  238. decimal Amount = decimal.Parse(jsonObj["Data"]["Amount"].ToString());
  239. int OperateType = int.Parse(jsonObj["Data"]["OperateType"].ToString());
  240. AddAmount(db, 2, UserId, Amount, OperateType);
  241. }
  242. else if(jsonObj["Kind"].ToString() == "3") // 调低额度返回余额
  243. {
  244. int UserId = int.Parse(jsonObj["Data"]["UserId"].ToString());
  245. decimal Amount = decimal.Parse(jsonObj["Data"]["Amount"].ToString());
  246. int PayMode = int.Parse(jsonObj["Data"]["PayMode"].ToString());
  247. AddAmount2(db, 3, UserId, Amount, PayMode, 0);
  248. if(PayMode != 1)
  249. {
  250. decimal BalanceAmount = Amount / 2;
  251. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  252. if (account == null)
  253. {
  254. account = db.UserAccount.Add(new UserAccount()
  255. {
  256. Id = UserId,
  257. UserId = UserId,
  258. }).Entity;
  259. db.SaveChanges();
  260. }
  261. decimal BeforeTotalAmount = account.TotalAmount; //变更前总金额
  262. decimal BeforeFreezeAmount = account.FreezeAmount; //变更前冻结金额
  263. decimal BeforeBalanceAmount = account.BalanceAmount; //变更前余额
  264. account.BalanceAmount += BalanceAmount;
  265. decimal AfterTotalAmount = account.TotalAmount; //变更后总金额
  266. decimal AfterFreezeAmount = account.FreezeAmount; //变更后冻结金额
  267. decimal AfterBalanceAmount = account.BalanceAmount; //变更后余额
  268. UserAccountRecord userAccountRecord = db.UserAccountRecord.Add(new UserAccountRecord()
  269. {
  270. CreateDate = DateTime.Now,
  271. UpdateDate = DateTime.Now,
  272. UserId = UserId, //创客
  273. ChangeType = 119, //变动类型
  274. ChangeAmount = BalanceAmount, //变更金额
  275. BeforeTotalAmount = BeforeTotalAmount, //变更前总金额
  276. AfterTotalAmount = AfterTotalAmount, //变更后总金额
  277. BeforeFreezeAmount = BeforeFreezeAmount, //变更前冻结金额
  278. AfterFreezeAmount = AfterFreezeAmount, //变更后冻结金额
  279. BeforeBalanceAmount = BeforeBalanceAmount, //变更前余额
  280. AfterBalanceAmount = AfterBalanceAmount, //变更后余额
  281. }).Entity;
  282. }
  283. }
  284. else if(jsonObj["Kind"].ToString() == "4") // 仓库发货,预发机申请
  285. {
  286. int StoreId = int.Parse(jsonObj["Data"]["StoreId"].ToString());
  287. string SnIds = jsonObj["Data"]["SnIds"].ToString();
  288. StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId);
  289. if(store != null)
  290. {
  291. decimal Amount = 0;
  292. string[] SnIdList = SnIds.Split(',');
  293. foreach(string SnIdString in SnIdList)
  294. {
  295. int SnId = int.Parse(SnIdString);
  296. PreSendStockDetail prepos = db.PreSendStockDetail.FirstOrDefault(m => m.SnId == SnId && m.Status == 1 && m.ApplyFlag == 1) ?? new PreSendStockDetail();
  297. if(prepos.AuthFlag == 0)
  298. {
  299. PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnId) ?? new PosMachinesTwo();
  300. KqProducts brand = brands.FirstOrDefault(m => m.Id == pos.BrandId) ?? new KqProducts();
  301. if(brand.Kind == 1)
  302. {
  303. Amount += 200;
  304. }
  305. else if(brand.Kind == 2)
  306. {
  307. Amount += 300;
  308. }
  309. }
  310. }
  311. if(Amount > 0)
  312. {
  313. AddAmount(db, 4, store.UserId, Amount, 1);
  314. }
  315. }
  316. }
  317. else if(jsonObj["Kind"].ToString() == "5") // 后台仓库调拨
  318. {
  319. int StoreId = int.Parse(jsonObj["Data"]["StoreId"].ToString());
  320. int BrandId = int.Parse(jsonObj["Data"]["BrandId"].ToString());
  321. string OpStorrString = jsonObj["Data"]["OpStoreNum"].ToString();
  322. int OpType = OpStorrString.StartsWith("-") ? 0 : 1;
  323. int OpStoreNum = int.Parse(OpStorrString.Replace("-", ""));
  324. StoreHouse store = db.StoreHouse.FirstOrDefault(m => m.Id == StoreId);
  325. if(store != null)
  326. {
  327. decimal Amount = 0;
  328. KqProducts brand = brands.FirstOrDefault(m => m.Id == BrandId) ?? new KqProducts();
  329. if(brand.Kind == 1)
  330. {
  331. Amount += 200 * OpStoreNum;
  332. }
  333. else if(brand.Kind == 2)
  334. {
  335. Amount += 300 * OpStoreNum;
  336. }
  337. if(Amount > 0)
  338. {
  339. AddAmount(db, 5, store.UserId, Amount, OpType);
  340. }
  341. }
  342. }
  343. db.SaveChanges();
  344. }
  345. else
  346. {
  347. Thread.Sleep(5000);
  348. }
  349. }
  350. catch (Exception ex)
  351. {
  352. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "分仓向总仓申请机具线程异常");
  353. }
  354. db.Dispose();
  355. }
  356. }
  357. public void AddAmount(WebCMSEntities db, int Kind, int UserId, decimal Amount, int OperateType = 1, int OrderId = 0)
  358. {
  359. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  360. if (account == null)
  361. {
  362. account = db.UserAccount.Add(new UserAccount()
  363. {
  364. Id = UserId,
  365. UserId = UserId,
  366. }).Entity;
  367. db.SaveChanges();
  368. }
  369. decimal BeforeTotalAmount = account.ValidAmount; //变更前总金额
  370. if(OperateType == 1)
  371. {
  372. account.ValidAmount += Amount;
  373. }
  374. else
  375. {
  376. account.ValidAmount -= Amount;
  377. }
  378. decimal AfterTotalAmount = account.ValidAmount; //变更后总金额
  379. StoreHouseAmountRecord record = db.StoreHouseAmountRecord.Add(new StoreHouseAmountRecord()
  380. {
  381. CreateDate = DateTime.Now,
  382. UpdateDate = DateTime.Now,
  383. OperateType = OperateType,
  384. AmountType = 1,
  385. AfterAmount = AfterTotalAmount,
  386. BeforeAmount = BeforeTotalAmount,
  387. UseAmount = Amount,
  388. UserId = UserId,
  389. QueryCount = OrderId,
  390. Sort = Kind,
  391. }).Entity;
  392. db.SaveChanges();
  393. }
  394. public void AddAmount2(WebCMSEntities db, int Kind, int UserId, decimal Amount, int PayMode, int OperateType = 1, int OrderId = 0)
  395. {
  396. UserAccount account = db.UserAccount.FirstOrDefault(m => m.Id == UserId);
  397. if (account == null)
  398. {
  399. account = db.UserAccount.Add(new UserAccount()
  400. {
  401. Id = UserId,
  402. UserId = UserId,
  403. }).Entity;
  404. db.SaveChanges();
  405. }
  406. decimal BeforeTotalAmount = account.ValidAmount; //变更前总金额
  407. if(OperateType == 1)
  408. {
  409. if(PayMode == 3)
  410. {
  411. account.TempAmountForBalance += Amount;
  412. }
  413. else
  414. {
  415. account.TempAmount += Amount;
  416. }
  417. account.ValidAmount += Amount;
  418. }
  419. else
  420. {
  421. if(PayMode == 3)
  422. {
  423. account.TempAmountForBalance -= Amount;
  424. }
  425. else
  426. {
  427. account.TempAmount -= Amount;
  428. }
  429. account.ValidAmount -= Amount;
  430. }
  431. decimal AfterTotalAmount = account.ValidAmount; //变更后总金额
  432. StoreHouseAmountRecord record = db.StoreHouseAmountRecord.Add(new StoreHouseAmountRecord()
  433. {
  434. CreateDate = DateTime.Now,
  435. UpdateDate = DateTime.Now,
  436. OperateType = OperateType,
  437. AmountType = 1,
  438. AfterAmount = AfterTotalAmount,
  439. BeforeAmount = BeforeTotalAmount,
  440. UseAmount = Amount,
  441. UserId = UserId,
  442. QueryCount = OrderId,
  443. Sort = Kind,
  444. PayMode = PayMode,
  445. }).Entity;
  446. db.SaveChanges();
  447. }
  448. private List<int> SpecialUsers10000()
  449. {
  450. List<int> ids = new List<int>();
  451. ids.Add(13185);
  452. ids.Add(514);
  453. ids.Add(24302);
  454. ids.Add(548);
  455. ids.Add(37887);
  456. ids.Add(33002);
  457. ids.Add(730);
  458. ids.Add(40950);
  459. ids.Add(72099);
  460. ids.Add(6898);
  461. ids.Add(46284);
  462. ids.Add(127884);
  463. ids.Add(3596);
  464. ids.Add(32630);
  465. ids.Add(11211);
  466. return ids;
  467. }
  468. private List<int> SpecialUsers0()
  469. {
  470. List<int> ids = new List<int>();
  471. ids.Add(21135);
  472. ids.Add(598);
  473. ids.Add(109913);
  474. ids.Add(609);
  475. ids.Add(588);
  476. ids.Add(12107);
  477. ids.Add(7641);
  478. ids.Add(4317);
  479. ids.Add(560);
  480. ids.Add(120998);
  481. ids.Add(3905);
  482. ids.Add(959);
  483. ids.Add(2502);
  484. ids.Add(1001);
  485. ids.Add(68868);
  486. ids.Add(11718);
  487. ids.Add(15493);
  488. ids.Add(459);
  489. ids.Add(97952);
  490. ids.Add(10719);
  491. ids.Add(16453);
  492. ids.Add(1337);
  493. ids.Add(110198);
  494. ids.Add(582);
  495. ids.Add(89);
  496. ids.Add(9319);
  497. ids.Add(128525);
  498. ids.Add(1109);
  499. ids.Add(28538);
  500. ids.Add(2927);
  501. ids.Add(584);
  502. ids.Add(6659);
  503. return ids;
  504. }
  505. }