Browse Source

测试费率服务费

lichunlei 1 year ago
parent
commit
d860891e92
3 changed files with 21 additions and 10 deletions
  1. 3 3
      AppStart/Helper/PublicImportDataService.cs
  2. 17 6
      Controllers/HomeController.cs
  3. 1 1
      Util/EncryptHelper.cs

+ 3 - 3
AppStart/Helper/PublicImportDataService.cs

@@ -974,15 +974,15 @@ namespace MySystem
             string sign = signData[1];
             function.WriteLog("加密数据:" + content, "设置POSP机具费率");
             SortedList<string, string> obj = new SortedList<string, string>();
-            obj.Add("type", "设置服务费");
+            obj.Add("type", "设置费");
             obj.Add("notice_id", Guid.NewGuid().ToString());
             obj.Add("timestamp", DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8));
             obj.Add("content", content);
             obj.Add("sign", sign);
             string requestJson = Newtonsoft.Json.JsonConvert.SerializeObject(obj);
             function.WriteLog("请求参数:" + requestJson, "设置POSP机具费率");
-            function.WriteLog("请求地址:" + PospRequestUrl + "/marketing/plan/query", "设置POSP机具费率");
-            string result = function.PostWebRequest(PospRequestUrl + "/marketing/plan/query", requestJson, "application/json");
+            function.WriteLog("请求地址:" + PospRequestUrl + "/marketing/plan/modify", "设置POSP机具费率");
+            string result = function.PostWebRequest(PospRequestUrl + "/marketing/plan/modify", requestJson, "application/json");
             function.WriteLog("返回报文:" + result, "设置POSP机具费率");
             function.WriteLog("\n\n", "设置POSP机具费率");
             return result;

+ 17 - 6
Controllers/HomeController.cs

@@ -54,13 +54,24 @@ 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("M00000000000034");
+            string result = PublicImportDataService.Instance.PospFee(poslist, "LKB_0.63+3", "联客宝");
+
+            if(result.Contains("\"content\""))
+            {
+                JsonData jsonObj = JsonMapper.ToObject(result);
+                result += EncryptHelper.AesDecrypt(jsonObj["content"].ToString(), "6v8cr0uyhtwtawda");
+            }
+
+            // string result = PublicImportDataService.Instance.PospQueryServiceFee();
+            // result += "\n\n";
+            // result += PublicImportDataService.Instance.PospQueryFee();
+
+            // {"deposit_change_time":"2023-12-26 21:51:04","agent_id":"V1703471325","deposit_list":[{"deposit_id":"LKB_000","deposit_name":"联客宝","supplement_info":"LKB_000"},{"deposit_id":"LKB_99","deposit_name":"联客宝","supplement_info":"LKB_99"},{"deposit_id":"LKB_199","deposit_name":"联客宝","supplement_info":"LKB_199"},{"deposit_id":"LKB_0.63+3","deposit_name":"联客宝","supplement_info":"LKB_0.63+3"},{"deposit_id":"LKB_0.6+0","deposit_name":"联客宝0.6+0","supplement_info":"LKB_0.6+0"},{"deposit_id":"LKB_0.63+0","deposit_name":"联客宝0.63+0","supplement_info":"LKB_0.63+0"},{"deposit_id":"LKB_299","deposit_name":"联客宝299押金","supplement_info":"LKB_299"}]}
+
+            // {"plan_change_time":"2023-12-26 21:51:04","agent_id":"V1703471325","plan_list":[{"plan_id":"LKB_000","plan_name":"联客宝","supplement_info":"LKB_000"},{"plan_id":"LKB_99","plan_name":"联客宝","supplement_info":"LKB_99"},{"plan_id":"LKB_199","plan_name":"联客宝","supplement_info":"LKB_199"},{"plan_id":"LKB_0.63+3","plan_name":"联客宝","supplement_info":"LKB_0.63+3"},{"plan_id":"LKB_0.6+0","plan_name":"联客宝0.6+0","supplement_info":"LKB_0.6+0"},{"plan_id":"LKB_0.63+0","plan_name":"联客宝0.63+0","supplement_info":"LKB_0.63+0"},{"plan_id":"LKB_299","plan_name":"联客宝299押金","supplement_info":"LKB_299"}]}
 
-            string result = PublicImportDataService.Instance.PospQueryServiceFee();
-            result += "#####";
-            result += PublicImportDataService.Instance.PospQueryFee();
             return result;
         }
 

+ 1 - 1
Util/EncryptHelper.cs

@@ -21,7 +21,7 @@ namespace MySystem
             string signstr = "";
             foreach(string sub in obj.Keys)
             {
-                if(sub == "pos_no")
+                if(sub == "pos_no" || sub == "merch_no")
                 {
                     signstr += sub + "=" + Newtonsoft.Json.JsonConvert.SerializeObject(obj[sub]).Replace("\"", "") + "&";
                 }