Explorar el Código

设置费率bug

lcl hace 3 meses
padre
commit
bcc4cd2e3e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;