Browse Source

推数据

lcl 2 months ago
parent
commit
0bbe307d55
1 changed files with 19 additions and 29 deletions
  1. 19 29
      Controllers/HomeController.cs

+ 19 - 29
Controllers/HomeController.cs

@@ -91,35 +91,6 @@ namespace MySystem.Controllers
             WebCMSEntities maindb = new WebCMSEntities();
             List<string> nos = new List<string>();
             nos.Add("2023122118000851456243816,288.4");
-            nos.Add("2023122117593143700062399,341.04");
-            nos.Add("2023122117325908930632327,254.15");
-            nos.Add("2023122116415701143090181,312.26");
-            nos.Add("2023122116413711877723909,276.83");
-            nos.Add("2023122114085649698036050,342.45");
-            nos.Add("2023122313533734425618726,299.78");
-            nos.Add("2023122313282248497454670,246.97");
-            nos.Add("2023122311000256069736155,261.82");
-            nos.Add("2023122310594073141191302,304.84");
-            nos.Add("2023122520210853072569713,191.59");
-            nos.Add("2023122518244789260165229,186.53");
-            nos.Add("2023122515274323574090329,275.95");
-            nos.Add("2023122515252336206794004,261.82");
-            nos.Add("2023122619342154468765968,178.31");
-            nos.Add("2023122618011435195726036,258.07");
-            nos.Add("2023122618001597671800401,248.51");
-            nos.Add("2023122615422945713502403,191.84");
-            nos.Add("2023122613362000858247931,227.61");
-            nos.Add("2023122820200788070426381,198.57");
-            nos.Add("2023122820125421416300639,237.29");
-            nos.Add("2023122820123371996899445,182.56");
-            nos.Add("2023122814020384897788563,167.38");
-            nos.Add("2023122811030268206294741,228.91");
-            nos.Add("2023122810460690412361230,210.46");
-            nos.Add("2023122810364031620851479,202.11");
-            nos.Add("2023122811124893906532985,224.09");
-            nos.Add("2023122917185120082183642,152.23");
-            nos.Add("2023122911233689014204746,163.27");
-            nos.Add("2023122911214057116568112,122.39");
             nos.Add("2023122911184819662469868,180.80");
             foreach(string sub in nos)
             {
@@ -176,5 +147,24 @@ namespace MySystem.Controllers
             }
             return code;
         }
+
+        public string test1()
+        {
+            DateTime start = DateTime.Parse("2025-01-01 00:00:00");
+            List<string> list = new List<string>();
+            list.Add("LKB01231000599995661");
+            WebCMSEntities db = new WebCMSEntities();
+            foreach(string sub in list)
+            {
+                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == sub && m.BindingState == 1 && m.BindingTime >= start);
+                if(pos != null)
+                {
+                    MerchantAddInfo addMer = db.MerchantAddInfo.FirstOrDefault(m => m.Id == pos.BindMerchantId) ?? new MerchantAddInfo();
+                    PosPushDataNewHelper.Bind(addMer, pos);
+                }
+            }
+            db.Dispose();
+            return "ok";
+        }
     }
 }