Browse Source

设置费率bug

lcl 3 months ago
parent
commit
bcc4cd2e3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Util/HaoDa/HaoDaFeeHelper.cs

+ 1 - 1
Util/HaoDa/HaoDaFeeHelper.cs

@@ -50,7 +50,7 @@ public class HaoDaFeeHelper
             if(info != null && addinfo != null)
             {
                 string FeeRate = addinfo.FeeRate;
-                if(!string.IsNullOrEmpty(FeeRate)) FeeRate = "0.38";
+                if(string.IsNullOrEmpty(FeeRate)) FeeRate = "0.38";
                 string result = HaoDaHelper.Instance.SetFee(addinfo.MchtNo, FeeRate, addinfo.BrandId);
                 JsonData jsonObj = JsonMapper.ToObject(result);
                 int Status = 0;