lcl 9 hónapja
szülő
commit
8c5f8bf850
3 módosított fájl, 21 hozzáadás és 9 törlés
  1. 2 2
      AppStart/Helper/SetDepositPostService.cs
  2. 14 2
      Controllers/HomeController.cs
  3. 5 5
      Startup.cs

+ 2 - 2
AppStart/Helper/SetDepositPostService.cs

@@ -62,7 +62,7 @@ namespace MySystem
                                 {
                                     decimal Fee = 0.63M;
                                     int addRate = 0;
-                                    if(pos.BrandId != 12 && pos.BrandId != 13 && pos.BrandId != 15)
+                                    if(pos.BrandId != 12 && pos.BrandId != 13)
                                     {
                                         if(Kind == 1)
                                         {
@@ -77,7 +77,7 @@ namespace MySystem
                                             }
                                         }
                                     }
-                                    if(pos.BrandId == 12 || pos.BrandId == 13 || pos.BrandId == 15)
+                                    if(pos.BrandId == 12 || pos.BrandId == 13)
                                     {
                                         if(Kind == 1) Kind = 2;
                                         if(Kind == 3) Fee = 0.6M;

+ 14 - 2
Controllers/HomeController.cs

@@ -51,8 +51,20 @@ namespace MySystem.Controllers
 
         public string test()
         {
-            string result = PublicImportDataService.Instance.SetLiSWeDeposit("WME52S0151353", 0);
-            return result;
+            WebCMSEntities db = new WebCMSEntities();
+            string content = function.ReadInstance("/txt/lkbsn.txt");
+            string[] list = content.Replace("\r", "").Split('\n');
+            foreach (string sub in list)
+            {
+                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.PosSn == sub);
+                if (pos != null)
+                {
+                    string info = "{\"RecordId\":\"\",\"PosId\":\"" + pos.Id + "\",\"Fee\": \"0.63\",\"Kind\": \"1\",\"OpMan\": \"" + "系统" + "\"}";
+                    RedisDbconn.Instance.AddList("SetDepositPostQueue", info);
+                }
+            }
+            db.Dispose();
+            return "ok";
         }
         
     

+ 5 - 5
Startup.cs

@@ -147,11 +147,11 @@ namespace MySystem
             }
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {
-                SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
-                SetDepositService.Instance.Start(); //调整费率(通知、标记)
-                SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
-                SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
-                ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
+                // SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
+                // SetDepositService.Instance.Start(); //调整费率(通知、标记)
+                // SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
+                // SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
+                // ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
             }
         }