Quellcode durchsuchen

添加补来源机队列

lcl vor 1 Jahr
Ursprung
Commit
e15bbb0ee0
2 geänderte Dateien mit 96 neuen und 0 gelöschten Zeilen
  1. 95 0
      AppStart/Helper/AddSourcePosSnHelper.cs
  2. 1 0
      Startup.cs

+ 95 - 0
AppStart/Helper/AddSourcePosSnHelper.cs

@@ -0,0 +1,95 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Data;
+using MySystem.PxcModels;
+using Library;
+using LitJson;
+using System.Threading;
+
+namespace MySystem
+{
+    public class AddSourcePosSnHelper
+    {
+        public readonly static AddSourcePosSnHelper Instance = new AddSourcePosSnHelper();
+        private AddSourcePosSnHelper()
+        { }
+    
+    
+        public void Start()
+        {
+            Thread th = new Thread(StartFor);
+            th.IsBackground = true;
+            th.Start();
+        }
+        public void StartFor()
+        {
+            while (true)
+            {
+                if(DateTime.Now.Hour > 0 && DateTime.Now.Hour < 9)
+                {
+                    try
+                    {
+                        StartDo();
+                    }
+                    catch(Exception ex)
+                    {
+                        function.WriteLog(DateTime.Now.ToString() + "\n" + ex.ToString() + "\n\n", "补来源机具异常");
+                    }
+                }
+                Thread.Sleep(600000);
+            }
+        }
+        public void StartDo()
+        {
+            WebCMSEntities db = new WebCMSEntities();
+            int StartId = int.Parse(function.CheckInt(function.ReadInstance("/PosId.txt")));
+            List<PosMachinesTwo> PosList = db.PosMachinesTwo.Where(m => m.Id > StartId && m.BuyUserId > 0 && string.IsNullOrEmpty(m.SourcePosSn)).OrderBy(m => m.Id).Take(20).ToList();
+            foreach(PosMachinesTwo Pos in PosList)
+            {
+                string CouposCode = "";
+                string PosSn = Pos.PosSn;
+                bool op = true;
+                while(op)
+                {
+                    int index = 0;
+                    Orders order = db.Orders.FirstOrDefault(m => m.SnNos.Contains(PosSn) && m.Sort > 0);
+                    if(order != null)
+                    {
+                        string[] SnNoList = order.SnNos.Split(',');
+                        for (int i = 0; i < SnNoList.Length; i++)
+                        {
+                            if(SnNoList[i] == PosSn)
+                            {
+                                index = i;
+                            }
+                        }
+                        MachineApply apply = db.MachineApply.FirstOrDefault(m => m.QueryCount == order.Id);
+                        if(apply != null)
+                        {
+                            string[] ApplySnNoList = apply.SwapSnExpand.Split('\n');
+                            if(apply.SwapSnExpand.Contains(":"))
+                            {
+                                PosSn = ApplySnNoList[index].Split(':')[0];
+                            }
+                            else
+                            {
+                                CouposCode = ApplySnNoList[index];
+                                op = false;
+                            }
+                        }
+                    }
+                }
+                PosMachinesTwo edit = db.PosMachinesTwo.FirstOrDefault(m => m.Id == Pos.Id);
+                if(edit != null)
+                {
+                    edit.SourcePosSn = CouposCode + "," + PosSn;
+                }
+                StartId = Pos.Id;
+                function.WriteLog("/", "PosId.txt", StartId.ToString());
+            }
+            db.SaveChanges();
+            db.Dispose();
+        }
+    }
+}

+ 1 - 0
Startup.cs

@@ -167,6 +167,7 @@ namespace MySystem
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {
                 RecommandKingHelper.Instance.Start(); //推荐王
+                AddSourcePosSnHelper.Instance.Start(); //补来源机具
             }
         }