AddSourcePosSnHelper.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. using System.Threading;
  9. namespace MySystem
  10. {
  11. public class AddSourcePosSnHelper
  12. {
  13. public readonly static AddSourcePosSnHelper Instance = new AddSourcePosSnHelper();
  14. private AddSourcePosSnHelper()
  15. { }
  16. public void Start()
  17. {
  18. Thread th = new Thread(StartFor);
  19. th.IsBackground = true;
  20. th.Start();
  21. }
  22. public void StartFor()
  23. {
  24. while (true)
  25. {
  26. if(DateTime.Now.Hour >= 0 && DateTime.Now.Hour < 9)
  27. {
  28. try
  29. {
  30. StartDo();
  31. }
  32. catch(Exception ex)
  33. {
  34. function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n\n", "补来源机具异常");
  35. }
  36. }
  37. Thread.Sleep(120000);
  38. }
  39. }
  40. public void StartDo()
  41. {
  42. WebCMSEntities db = new WebCMSEntities();
  43. int StartId = int.Parse(function.CheckInt(function.ReadInstance("/PosId.txt")));
  44. List<PosMachinesTwo> PosList = db.PosMachinesTwo.Where(m => m.Id > StartId && m.BuyUserId > 0 && string.IsNullOrEmpty(m.SourcePosSn)).OrderBy(m => m.Id).Take(20).ToList();
  45. foreach(PosMachinesTwo Pos in PosList)
  46. {
  47. function.WriteLog(Pos.PosSn + ":" + Pos.Id, "补来源机具日志");
  48. string CouposCode = "";
  49. string PosSn = Pos.PosSn;
  50. bool op = true;
  51. while(op)
  52. {
  53. int index = 0;
  54. Orders order = db.Orders.FirstOrDefault(m => m.SnNos.Contains(PosSn) && m.Sort > 0);
  55. if(order != null)
  56. {
  57. string[] SnNoList = order.SnNos.Split(',');
  58. for (int i = 0; i < SnNoList.Length; i++)
  59. {
  60. if(SnNoList[i] == PosSn)
  61. {
  62. index = i;
  63. }
  64. }
  65. MachineApply apply = db.MachineApply.FirstOrDefault(m => m.QueryCount == order.Id);
  66. if(apply != null)
  67. {
  68. string[] ApplySnNoList = apply.SwapSnExpand.Split('\n');
  69. if(apply.SwapSnExpand.Contains(":"))
  70. {
  71. PosSn = ApplySnNoList[index].Split(':')[0];
  72. }
  73. else
  74. {
  75. CouposCode = ApplySnNoList[index];
  76. op = false;
  77. }
  78. }
  79. }
  80. }
  81. PosMachinesTwo edit = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Pos.Id);
  82. if(edit != null)
  83. {
  84. edit.SourcePosSn = CouposCode + "," + PosSn;
  85. }
  86. StartId = Pos.Id;
  87. }
  88. db.SaveChanges();
  89. db.Dispose();
  90. function.WritePage("/", "PosId.txt", StartId.ToString());
  91. }
  92. }
  93. }