AddSourcePosSnHelper.cs 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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(600000);
  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. string CouposCode = "";
  48. string PosSn = Pos.PosSn;
  49. bool op = true;
  50. while(op)
  51. {
  52. int index = 0;
  53. Orders order = db.Orders.FirstOrDefault(m => m.SnNos.Contains(PosSn) && m.Sort > 0);
  54. if(order != null)
  55. {
  56. string[] SnNoList = order.SnNos.Split(',');
  57. for (int i = 0; i < SnNoList.Length; i++)
  58. {
  59. if(SnNoList[i] == PosSn)
  60. {
  61. index = i;
  62. }
  63. }
  64. MachineApply apply = db.MachineApply.FirstOrDefault(m => m.QueryCount == order.Id);
  65. if(apply != null)
  66. {
  67. string[] ApplySnNoList = apply.SwapSnExpand.Split('\n');
  68. if(apply.SwapSnExpand.Contains(":"))
  69. {
  70. PosSn = ApplySnNoList[index].Split(':')[0];
  71. }
  72. else
  73. {
  74. CouposCode = ApplySnNoList[index];
  75. op = false;
  76. }
  77. }
  78. }
  79. }
  80. PosMachinesTwo edit = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Pos.Id);
  81. if(edit != null)
  82. {
  83. edit.SourcePosSn = CouposCode + "," + PosSn;
  84. }
  85. StartId = Pos.Id;
  86. function.WriteLog("/", "PosId.txt", StartId.ToString());
  87. }
  88. db.SaveChanges();
  89. db.Dispose();
  90. }
  91. }
  92. }