Browse Source

盛付通设置费率,可以设置任意费率

lcl 4 months ago
parent
commit
d3a690b930
1 changed files with 1 additions and 1 deletions
  1. 1 1
      AppStart/Helper/SetDepositPostService.cs

+ 1 - 1
AppStart/Helper/SetDepositPostService.cs

@@ -189,7 +189,7 @@ namespace MySystem
                             }
                             else if(BrandId == 7) //盛付通
                             {
-                                if(Kind == 0) Fee = decimal.Parse(function.CheckInt(jsonObj["Fee"].ToString()));
+                                if(Kind == 0) Fee = decimal.Parse(function.CheckNum(jsonObj["Fee"].ToString()));
                                 string content = SetFeeForSft(MerNo, Fee.ToString("f4"), addRate.ToString());
                                 JsonData obj = JsonMapper.ToObject(content);
                                 if(obj["respCode"].ToString() == "00")