Browse Source

盒易付设置服务费判断创业帮的机具,机构号不一样

lcl 8 months ago
parent
commit
dd6b8883f1
2 changed files with 11 additions and 3 deletions
  1. 1 1
      AppStart/Helper/ChangePosFeeUtil.cs
  2. 10 2
      AppStart/Helper/PublicImportDataService.cs

+ 1 - 1
AppStart/Helper/ChangePosFeeUtil.cs

@@ -494,7 +494,7 @@ namespace MySystem
                     return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
                 }
                 function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "盒易付-设置押金-返回报文");
-                string content = PublicImportDataService.Instance.BoxServiceFee(pos.PosSn, DepositId);
+                string content = PublicImportDataService.Instance.BoxServiceFee(pos.PosSn, DepositId, pos.BuyUserId);
                 function.WriteLog(DateTime.Now.ToString() + "\n" + content, "盒易付-设置押金-返回报文");
                 if (content == "fail")
                 {

+ 10 - 2
AppStart/Helper/PublicImportDataService.cs

@@ -858,8 +858,9 @@ namespace MySystem
         string BoxAppSecret = "DGtftIyl6R3nzwPr5YuV5fnmkfwufXRj";
         string BoxPublicKey = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjmjoQirIYZBD9Qon2HkF4j/NAINXtJ7Lzq/WXxTF7t7mg7LNARt0+ZZaeWx8caq2fv5zdsGyyoInL23cBtDI5KmFfK69iA0ygQMK0WbiKqsUB1OpPbT3+9zLuadIJAznjA223lY6CIjTpdLZhaRjImNVqc60bdkx6YsQcA+xW+3r1JH4PPHb7yBEbkKIX8OhyX7U4p0TkbDkAobbjHr5YB9gmYLoSFJMOPfTtSExkv7/Y7IVR9poZAHcr3teFoAiXW3RzxelRtnXxIkl/6AUOKoL5fhr/UTUN+Q18uzNljYWr6SwnTI3EmtzgykaewWtZvV85Xdhe/BjiQ5Xor7YbwIDAQAB";
         string BrhCode = "039034";
+        string CybBrhCode = "039034002";
 
-        public string BoxServiceFee(string SnList, string ServiceFee)
+        public string BoxServiceFee(string SnList, string ServiceFee, int UserId = 0)
         {
             function.WriteLog(DateTime.Now.ToString(), "设置盒易付机具服务费");
             function.WriteLog(SnList, "设置盒易付机具服务费");
@@ -881,7 +882,14 @@ namespace MySystem
             }
             reqdic.Add("depositGear", ServiceFee);//押金档位
             reqdic.Add("modelId", "MHN10916");//费率,固定0.6
-            reqdic.Add("brhCode", BrhCode);//机构号
+            if(UserId == 123005)
+            {
+                reqdic.Add("brhCode", CybBrhCode);//机构号
+            }
+            else
+            {
+                reqdic.Add("brhCode", BrhCode);//机构号
+            }
             reqdic.Add("batchNo", batchNo);//批次号
             string req = Newtonsoft.Json.JsonConvert.SerializeObject(reqdic);