SetDepositService.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. using System;
  2. using System.Collections.Generic;
  3. using Library;
  4. using LitJson;
  5. using System.Linq;
  6. using System.Data;
  7. using System.Threading;
  8. using MySystem.PxcModels;
  9. using System.Security.Cryptography;
  10. using System.Text;
  11. namespace MySystem
  12. {
  13. public class SetDepositService
  14. {
  15. public readonly static SetDepositService Instance = new SetDepositService();
  16. private SetDepositService()
  17. { }
  18. public void Start()
  19. {
  20. Thread th = new Thread(dosomething);
  21. th.IsBackground = true;
  22. th.Start();
  23. }
  24. public void dosomething()
  25. {
  26. while (true)
  27. {
  28. string data = RedisDbconn.Instance.RPop<string>("SetDepositQueue");
  29. if (!string.IsNullOrEmpty(data))
  30. {
  31. try
  32. {
  33. WebCMSEntities db = new WebCMSEntities();
  34. JsonData jsonObj = JsonMapper.ToObject(data);
  35. string PosIds = jsonObj["PosId"].ToString();
  36. int Kind = int.Parse(function.CheckInt(jsonObj["Kind"].ToString()));
  37. int RecordId = 0;
  38. if(data.Contains("\"RecordId\""))
  39. {
  40. RecordId = int.Parse(function.CheckInt(jsonObj["RecordId"].ToString()));
  41. }
  42. string OpMan = jsonObj["OpMan"].ToString();
  43. if(!string.IsNullOrEmpty(PosIds))
  44. {
  45. List<int> ids = new List<int>();
  46. string[] PosIdList = PosIds.Split(',');
  47. foreach(string sub in PosIdList)
  48. {
  49. ids.Add(int.Parse(sub));
  50. }
  51. List<KqProducts> brands = db.KqProducts.ToList();
  52. List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => ids.Contains(m.Id)).ToList();
  53. List<int> mids = poslist.Select(m => m.BindMerchantId).ToList();
  54. List<PosMerchantInfo> merchantlist = db.PosMerchantInfo.Where(m => mids.Contains(m.Id)).ToList();
  55. Dictionary<int, List<PosMachinesTwo>> userPosList = new Dictionary<int, List<PosMachinesTwo>>();
  56. Dictionary<int, List<PosMachinesTwo>> hintPosList = new Dictionary<int, List<PosMachinesTwo>>();
  57. foreach(PosMachinesTwo pos in poslist)
  58. {
  59. PosMerchantInfo merchant = merchantlist.FirstOrDefault(m => m.Id == pos.BindMerchantId);
  60. if(merchant != null)
  61. {
  62. decimal Fee = Kind == 1 ? 0.63M : 0.6M;
  63. if(Kind == 0)
  64. {
  65. pos.UserNav = "85天调升提醒";
  66. // pos.UpFeeFlag = 1;
  67. // pos.UpFeeMan = OpMan;
  68. // pos.UpFeeDate = DateTime.Now;
  69. // merchant.Status = 1;
  70. // merchant.SeoKeyword = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  71. }
  72. else if(Kind == 1)
  73. {
  74. pos.UpFeeFlag = 1;
  75. pos.UpFeeMan = OpMan;
  76. pos.UpFeeDate = DateTime.Now;
  77. merchant.Status = 1;
  78. // merchant.SeoKeyword = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  79. }
  80. else if(Kind == 2)
  81. {
  82. pos.DownFeeFlag = 1;
  83. pos.DownFeeMan = OpMan;
  84. pos.DownFeeDate = DateTime.Now;
  85. // if(pos.BrandId == 12 || pos.BrandId == 13)
  86. // {
  87. // pos.DownFee = 0.6M;
  88. // }
  89. // else
  90. // {
  91. pos.DownFee = 0.63M;
  92. // }
  93. merchant.Status = 0;
  94. // merchant.SeoKeyword = "";
  95. // SetRecordResult(db, RecordId, 1);
  96. }
  97. else if(Kind == 3)
  98. {
  99. pos.DownFeeFlag = 1;
  100. pos.DownFeeMan = OpMan;
  101. pos.DownFeeDate = DateTime.Now;
  102. pos.DownFee = 0.6M;
  103. merchant.Status = 0;
  104. // merchant.SeoKeyword = "";
  105. // SetRecordResult(db, RecordId, 1);
  106. }
  107. db.SaveChanges();
  108. pos.QueryCount = Kind;
  109. if(Kind == 0) //85天调升提醒
  110. {
  111. if(hintPosList.ContainsKey(pos.BuyUserId))
  112. {
  113. hintPosList[pos.BuyUserId].Add(pos);
  114. }
  115. else
  116. {
  117. List<PosMachinesTwo> subPos = new List<PosMachinesTwo>();
  118. subPos.Add(pos);
  119. hintPosList.Add(pos.BuyUserId, subPos);
  120. }
  121. }
  122. if(Kind > 0) //只有调降发消息
  123. {
  124. if(userPosList.ContainsKey(pos.BuyUserId))
  125. {
  126. userPosList[pos.BuyUserId].Add(pos);
  127. }
  128. else
  129. {
  130. List<PosMachinesTwo> subPos = new List<PosMachinesTwo>();
  131. subPos.Add(pos);
  132. userPosList.Add(pos.BuyUserId, subPos);
  133. }
  134. }
  135. if(Kind > 1)
  136. {
  137. RedisDbconn.Instance.AddList("SetDepositPostQueue", data);
  138. }
  139. }
  140. }
  141. foreach(int UserId in hintPosList.Keys)
  142. {
  143. string snhtml = "", snhtml2 = "";
  144. foreach (var item in hintPosList[UserId])
  145. {
  146. var mer = merchantlist.FirstOrDefault(m => m.Id == item.BindMerchantId) ?? new PosMerchantInfo();
  147. var brand = brands.FirstOrDefault(m => m.Id == item.BrandId) ?? new KqProducts();
  148. if(item.BrandId == 12 || item.BrandId == 13)
  149. {
  150. snhtml2 += "<div style='margin-bottom: .48rem;'><div class='f16'>商户姓名:" + mer.MerRealName + "</div>";
  151. snhtml2 += "<div class='f16'>机具品牌:" + brand.Name + "</div>";
  152. snhtml2 += "<div class='f16'>SN:" + item.PosSn + "</div>";
  153. }
  154. else
  155. {
  156. snhtml += "<div style='margin-bottom: .48rem;'><div class='f16'>商户姓名:" + mer.MerRealName + "</div>";
  157. snhtml += "<div class='f16'>机具品牌:" + brand.Name + "</div>";
  158. snhtml += "<div class='f16'>SN:" + item.PosSn + "</div>";
  159. }
  160. string DownFeeDate = item.DownFeeDate == null ? "" : item.DownFeeDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
  161. }
  162. if(!string.IsNullOrEmpty(snhtml))
  163. {
  164. snhtml = "<div style='margin-bottom: .48rem;'>" + snhtml + "</div>";
  165. RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
  166. {
  167. UserId = Convert.ToInt32(UserId), //创客
  168. Title = "机具费率即将调升提醒", //标题
  169. Content = "<div class='f16' style='margin-bottom: .72rem'>您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63+3,如需调整费率,请前往我的商户-商户详情中点击调整</div>" + snhtml, //内容
  170. Summary = "您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63+3,如需调整费率,请前往我的商户-商户详情中点击调整",
  171. CreateDate = DateTime.Now,
  172. }));
  173. }
  174. if(!string.IsNullOrEmpty(snhtml2))
  175. {
  176. snhtml2 = "<div style='margin-bottom: .48rem;'>" + snhtml2 + "</div>";
  177. RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
  178. {
  179. UserId = Convert.ToInt32(UserId), //创客
  180. Title = "机具费率即将调升提醒", //标题
  181. Content = "<div class='f16' style='margin-bottom: .72rem'>您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63,如需调整费率,请前往我的商户-商户详情中点击调整</div>" + snhtml2, //内容
  182. Summary = "您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63,如需调整费率,请前往我的商户-商户详情中点击调整",
  183. CreateDate = DateTime.Now,
  184. }));
  185. }
  186. }
  187. foreach(int UserId in userPosList.Keys)
  188. {
  189. string snhtml = "", snhtml2 = "";
  190. foreach (var items in userPosList[UserId])
  191. {
  192. var mer = merchantlist.FirstOrDefault(m => m.Id == items.BindMerchantId) ?? new PosMerchantInfo();
  193. var brand = brands.FirstOrDefault(m => m.Id == items.BrandId) ?? new KqProducts();
  194. if(items.QueryCount == 1)
  195. {
  196. snhtml += "<div style='margin-bottom: .48rem;'><div class='f16'>商户姓名:" + mer.MerRealName + "</div>";
  197. snhtml += "<div class='f16'>机具品牌:" + brand.Name + "</div>";
  198. snhtml += "<div class='f16'>SN:" + items.PosSn + "</div>";
  199. string DownFeeDate = items.DownFeeDate == null ? "" : items.DownFeeDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
  200. }
  201. else if(items.QueryCount == 2)
  202. {
  203. snhtml2 += "<div style='margin-bottom: .48rem;'><div class='f16'>商户姓名:" + mer.MerRealName + "</div>";
  204. snhtml2 += "<div class='f16'>机具品牌:" + brand.Name + "</div>";
  205. snhtml2 += "<div class='f16'>SN:" + items.PosSn + "</div>";
  206. string DownFeeDate = items.DownFeeDate == null ? "" : items.DownFeeDate.Value.ToString("yyyy-MM-dd HH:mm:ss");
  207. if(items.BrandId == 12 || items.BrandId == 13)
  208. {
  209. snhtml2 += "<div class='f16'>当前费率:0.6%</div>";
  210. }
  211. else
  212. {
  213. snhtml2 += "<div class='f16'>当前费率:0.63%</div>";
  214. }
  215. snhtml2 += "<div class='f16'>费率调整时间:" + DownFeeDate + "</div>";
  216. }
  217. }
  218. if(!string.IsNullOrEmpty(snhtml))
  219. {
  220. snhtml = "<div style='margin-bottom: .48rem;'>" + snhtml + "</div>";
  221. RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
  222. {
  223. UserId = Convert.ToInt32(UserId), //创客
  224. Title = "机具费率即将调升提醒", //标题
  225. Content = "<div class='f16' style='margin-bottom: .72rem'>您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63%,如需调整费率,请前往我的商户-商户详情中点击调整</div>" + snhtml, //内容
  226. Summary = "您的部分机具已绑定满85天,5天后该机具刷卡费率将恢复0.63%,如需调整费率,请前往我的商户-商户详情中点击调整",
  227. CreateDate = DateTime.Now,
  228. }));
  229. }
  230. else if(!string.IsNullOrEmpty(snhtml2))
  231. {
  232. snhtml2 = "<div style='margin-bottom: .48rem;'>" + snhtml2 + "</div>";
  233. RedisDbconn.Instance.AddList("MsgPersonalQueue", Newtonsoft.Json.JsonConvert.SerializeObject(new MsgPersonal()
  234. {
  235. UserId = Convert.ToInt32(UserId), //创客
  236. Title = "商户费率变更通知", //标题
  237. Content = "<div class='f16' style='margin-bottom: .72rem'>您的商户刷卡交易费率已变更成功!</div>" + snhtml2, //内容
  238. Summary = "您的商户刷卡交易费率已变更成功!",
  239. CreateDate = DateTime.Now,
  240. }));
  241. }
  242. }
  243. }
  244. db.Dispose();
  245. }
  246. catch (Exception ex)
  247. {
  248. function.WriteLog(DateTime.Now.ToString() + "\r\n" + ex.ToString(), "设置费率队列异常");
  249. }
  250. }
  251. else
  252. {
  253. Thread.Sleep(500);
  254. }
  255. }
  256. }
  257. private void SetRecordResult(WebCMSEntities db, int RecordId, int Status, string Note = "")
  258. {
  259. if(RecordId > 0)
  260. {
  261. PosMachinesFeeChangeRecord record = db.PosMachinesFeeChangeRecord.FirstOrDefault(m => m.Id == RecordId);
  262. if(record != null)
  263. {
  264. record.Status = Status;
  265. record.SeoDescription = Note;
  266. }
  267. }
  268. }
  269. }
  270. }