Browse Source

整理联客宝服务费。费率设置逻辑

lcl 1 year ago
parent
commit
de2f4f733b

+ 10 - 1
AppStart/Helper/ChangePosFeeQueue.cs

@@ -94,7 +94,7 @@ public class ChangePosFeeQueue
                     //联动
                     if (bId == 10 || bId == 11)
                     { 
-                         if (Deposit == "0") Deposit = "0";
+                        if (Deposit == "0") Deposit = "0";
                         else if (Deposit == "99") Deposit = "99";
                         else if (Deposit == "199") Deposit = "199";
                         else if (Deposit == "299") Deposit = "299";
@@ -109,6 +109,15 @@ public class ChangePosFeeQueue
                         else if (Deposit == "299") Deposit = "299";
                         ChangePosFeeUtil.SetHYFDeposit(PosSnId.ToString(), Deposit);
                     }
+                    //联客宝
+                    if (bId == 15 || bId == 16)
+                    { 
+                        if (Deposit == "0") Deposit = "0";
+                        else if (Deposit == "99") Deposit = "99";
+                        else if (Deposit == "199") Deposit = "199";
+                        else if (Deposit == "299") Deposit = "299";
+                        ChangePosFeeUtil.SetPosPDeposit(PosSnId.ToString(), Deposit);
+                    }
                 }
                 else
                 {

+ 3 - 1
AppStart/Helper/ChangePosFeeUtil.cs

@@ -526,7 +526,9 @@ namespace MySystem
                     return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
                 }
                 function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "POSP-设置押金-返回报文");
-                string content = ""; //PublicImportDataService.Instance.PospServiceFee(pos.PosSn, DepositId, "");
+                List<string> PosList = new List<string>();
+                PosList.Add(pos.PosSn);
+                string content = PublicImportDataService.Instance.PospServiceFee(PosList, DepositId, "");
                 function.WriteLog(DateTime.Now.ToString() + "\n" + content, "POSP-设置押金-返回报文");
                 if (content == "fail")
                 {

+ 3 - 1
AppStart/Helper/PublicImportDataService.cs

@@ -871,10 +871,12 @@ namespace MySystem
         #region POSP
 
         //测试环境
+        // string AesSecret = "6v8cr0uyhtwtawda";
+        // string PospRequestUrl = "http://120.76.196.209:9221";
         
         //生产环境
         string AesSecret = "6v8cr0uyhtwtawda";
-        string PospRequestUrl = "http://120.76.196.209:9221";
+        string PospRequestUrl = "https://sale.posp.kexiaoshuang.com";
 
         public string PospQueryServiceFee()
         {

+ 22 - 0
AppStart/Helper/SetDepositPostService.cs

@@ -348,6 +348,28 @@ namespace MySystem
                                             db.SaveChanges();
                                         }
                                     }
+                                    else if(pos.BrandId == 15 || pos.BrandId == 16) //联客宝
+                                    {
+                                        List<string> merno = new List<string>();
+                                        merno.Add(merchant.KqMerNo);
+                                        string plan_id = "";
+                                        string plan_name = "";
+                                        string content = PublicImportDataService.Instance.PospFee(merno, plan_id, plan_name);
+                                        JsonData obj = JsonMapper.ToObject(content);
+                                        if(obj["code"].ToString() == "200")
+                                        {
+                                            pos.SeoDescription = "设置成功";
+                                            SetRecordResult(db, RecordId, 1, "设置成功");
+                                            db.SaveChanges();
+                                        }
+                                        else
+                                        {
+                                            string msg = obj["msg"].ToString();
+                                            pos.SeoDescription = msg;
+                                            SetRecordResult(db, RecordId, -1, msg);
+                                            db.SaveChanges();
+                                        }
+                                    }
                                 }
                             }
                         }

+ 6 - 3
Controllers/HomeController.cs

@@ -54,10 +54,13 @@ namespace MySystem.Controllers
 
         public string test()
         {
-            List<string> poslist = new List<string>();
-            poslist.Add("M00000000000079");
-            string result = PublicImportDataService.Instance.PospFee(poslist, "yilaike", "易来客");
+            // List<string> poslist = new List<string>();
+            // poslist.Add("M00000000000079");
+            // string result = PublicImportDataService.Instance.PospFee(poslist, "yilaike", "易来客");
 
+            string result = PublicImportDataService.Instance.PospQueryServiceFee();
+            result += "#####";
+            result += PublicImportDataService.Instance.PospQueryFee();
             return result;
         }
 

+ 0 - 19
Startup.cs

@@ -117,26 +117,7 @@ namespace MySystem
             Library.function.WritePage("/", "WebRootPath.txt", env.WebRootPath);
             // app.UseStatusCodePagesWithReExecute("/public/errpage/pc/{0}.html");
 
-            // RequestDelegate handler = async context =>
-            // {
-            //     var response = context.Response;
-            //     if (response.StatusCode < 500)
-            //     {
-            //         response.("/public/errpage/pc/{0}.html");
-            //     }
-            // };
-            // app.UseStatusCodePages(builder => builder.Run(handler));
             app.UseStaticFiles();
-            // app.UseStaticFiles(new StaticFileOptions
-            // {
-            //     FileProvider = new PhysicalFileProvider(AppContext.BaseDirectory + "/static"),
-            //     RequestPath = "/static"
-            // });
-            // app.UseStaticFiles(new StaticFileOptions
-            // {
-            //     FileProvider = new PhysicalFileProvider(AppContext.BaseDirectory + "/" + Configuration["Setting:Database"]),
-            //     RequestPath = "/" + Configuration["Setting:Database"]
-            // });
             app.UseStaticFiles(new StaticFileOptions
             {
                 ContentTypeProvider = new FileExtensionContentTypeProvider(new Dictionary<string, string>