SycnSpMerchantService.cs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using MySystem.SpModels;
  5. using Library;
  6. using LitJson;
  7. using System.Threading;
  8. namespace MySystem
  9. {
  10. public class SycnSpMerchantService
  11. {
  12. public readonly static SycnSpMerchantService Instance = new SycnSpMerchantService();
  13. private SycnSpMerchantService()
  14. { }
  15. public void Start()
  16. {
  17. Thread th = new Thread(StartDo);
  18. th.IsBackground = true;
  19. th.Start();
  20. }
  21. public void StartDo()
  22. {
  23. while (true)
  24. {
  25. try
  26. {
  27. WebCMSEntities spdb = new WebCMSEntities();
  28. PxcModels.WebCMSEntities db = new PxcModels.WebCMSEntities();
  29. DateTime start = DateTime.Now.AddDays(-5);
  30. int StartId = int.Parse(function.CheckInt(function.ReadInstance("/SycnSp/MerchantsId.txt")));
  31. var Mers = spdb.Merchants.Where(m => m.Id >= StartId && m.CreateTime >= start && m.Status == 1).OrderByDescending(m => m.Id).ToList();
  32. foreach (var Mer in Mers)
  33. {
  34. var tran = db.Database.BeginTransaction();
  35. try
  36. {
  37. // PxcModels.MachineForMerNo posFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == Mer.MerNo) ?? new PxcModels.MachineForMerNo();
  38. PxcModels.PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == Mer.SnNo) ?? new PxcModels.PosMachinesTwo();
  39. if (pos.BindingState == 1 && Mer.Field2 != "解绑")
  40. {
  41. PxcModels.Users user = db.Users.FirstOrDefault(m => m.Id == pos.UserId) ?? new PxcModels.Users();
  42. int TopUserId = 0;
  43. if (!string.IsNullOrEmpty(user.ParentNav))
  44. {
  45. TopUserId = int.Parse(user.ParentNav.Trim(',').Replace(",,", ",").Split(',')[0]);
  46. }
  47. int BrandId = pos.BrandId;
  48. PxcModels.PosMerchantInfo add = db.PosMerchantInfo.FirstOrDefault(m => m.KqMerNo == Mer.MerNo);
  49. if (add == null)
  50. {
  51. int IsFirst = 1;
  52. if(!string.IsNullOrEmpty(Mer.MerIdcardNo))
  53. {
  54. string startNo = Mer.MerIdcardNo.Substring(0, 6);
  55. string endNo = Mer.MerIdcardNo.Substring(Mer.MerIdcardNo.Length - 4, 4).ToUpper();
  56. string Name = Mer.MerName;
  57. if (Mer.ProductType == "2")
  58. {
  59. if (Name.Contains("-"))
  60. {
  61. Name = Name.Split('-')[1];
  62. }
  63. else if (Name.Contains("_"))
  64. {
  65. Name = Name.Split('_')[1];
  66. }
  67. }
  68. else if (Mer.ProductType == "4" || Mer.ProductType == "8" || Mer.ProductType == "9")
  69. {
  70. Name = Mer.SeoTitle;
  71. }
  72. else if (Mer.ProductType == "10")
  73. {
  74. Name = Name.Replace("*", "");
  75. }
  76. Name = Name.Replace("个体户", "");
  77. Name = Name.Replace("个体商户", "");
  78. Name = Name.Replace("企业户", "");
  79. Name = Name.Replace("企业商户", "");
  80. function.WriteLog(DateTime.Now.ToString() + "-----startNo:" + startNo + ",endNo:" + endNo + ",Name:" + Name, "监控机具是否互斥");
  81. bool check = db.PosMerchantInfo.Any(m => m.MerIdcardNo.StartsWith(startNo) && m.MerIdcardNo.EndsWith(endNo) && m.MerchantName.Contains(Name));
  82. if(check)
  83. {
  84. IsFirst = 0;
  85. }
  86. }
  87. pos.IsFirst = IsFirst;
  88. add = db.PosMerchantInfo.Add(new PxcModels.PosMerchantInfo()
  89. {
  90. CreateDate = Mer.CreateTime,
  91. KqMerNo = Mer.MerNo,
  92. MerchantNo = Mer.MerNo,
  93. }).Entity;
  94. db.SaveChanges();
  95. function.WriteLog("MerNo:" + Mer.MerNo + ",PosSn:" + pos.PosSn + ",IsFirst:" + IsFirst + "\n\n", "监控机具是否互斥");
  96. }
  97. // else
  98. // {
  99. // string SnNo = add.KqSnNo;
  100. // PxcModels.MachineForMerNo oldPosFor = db.MachineForMerNo.FirstOrDefault(m => m.MerNo == SnNo) ?? new PxcModels.MachineForMerNo();
  101. // PxcModels.PosMachinesTwo oldPos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == oldPosFor.SnId) ?? new PxcModels.PosMachinesTwo();
  102. // pos.IsFirst = oldPos.IsFirst;
  103. // }
  104. add.UpdateDate = Mer.UpdateTime;
  105. add.TopUserId = TopUserId;
  106. add.BrandId = BrandId;
  107. add.SnStoreId = pos.StoreId;
  108. add.SnType = pos.PosSnType;
  109. add.UserId = pos.UserId;
  110. add.MgrName = Mer.AgentName;
  111. add.MerStatus = 1;
  112. add.KqSnNo = Mer.SnNo;
  113. add.MerIdcardNo = function.CheckNull(Mer.MerIdcardNo).ToUpper();
  114. add.MerRealName = Mer.MerRealName;
  115. add.MerchantMobile = Mer.MerMobile;
  116. add.MerchantName = Mer.MerName;
  117. pos.BindMerchantId = add.Id;
  118. db.SaveChanges();
  119. PxcModels.Users buser = db.Users.FirstOrDefault(m => m.Id == pos.BuyUserId) ?? new PxcModels.Users();
  120. if(buser.BusinessFlag == 1)
  121. {
  122. bool checkMer = db.BusinessPartnerMerchant.Any(m => m.MerchantId == add.Id);
  123. if(!checkMer)
  124. {
  125. PxcModels.BusinessPartnerPos bpos = db.BusinessPartnerPos.FirstOrDefault(m => m.PosId == pos.Id) ?? new PxcModels.BusinessPartnerPos();
  126. db.BusinessPartnerMerchant.Add(new PxcModels.BusinessPartnerMerchant()
  127. {
  128. CreateDate = DateTime.Now,
  129. MerNo = Mer.MerNo,
  130. MerchantId = add.Id,
  131. PartnerId = bpos.PartnerId,
  132. UserId = pos.BuyUserId,
  133. });
  134. db.SaveChanges();
  135. }
  136. }
  137. Merchants edit = spdb.Merchants.FirstOrDefault(m => m.Id == Mer.Id);
  138. if (edit != null)
  139. {
  140. edit.Status = 2;
  141. spdb.SaveChanges();
  142. }
  143. tran.Commit();
  144. }
  145. }
  146. catch (Exception ex)
  147. {
  148. tran.Rollback();
  149. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n" + Mer.Id, "同步SP商户数据到MAIN异常");
  150. }
  151. tran.Dispose();
  152. }
  153. spdb.SaveChanges();
  154. spdb.Dispose();
  155. db.SaveChanges();
  156. db.Dispose();
  157. }
  158. catch (Exception ex)
  159. {
  160. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString(), "同步SP商户数据到MAIN异常");
  161. }
  162. Thread.Sleep(1000);
  163. }
  164. }
  165. }
  166. }