Browse Source

去掉验证盒易付接口返回的数据是否和提交的数据一致

lcl 1 year ago
parent
commit
1e247636bc
1 changed files with 4 additions and 4 deletions
  1. 4 4
      AppStart/PosChannelHelper.cs

+ 4 - 4
AppStart/PosChannelHelper.cs

@@ -54,9 +54,9 @@ public class PosChannelHelper
             JsonData jsonData = JsonMapper.ToObject(jsonString);
             if(jsonData["resultCode"].ToString() == "1")
             {
-                string acqInstId = jsonData["data"]["acqInstId"].ToString();
-                if(sub.ChannelNo == acqInstId)
-                {
+                // string acqInstId = jsonData["data"]["acqInstId"].ToString();
+                // if(sub.ChannelNo == acqInstId)
+                // {
                     PosChannelSetRecord edit = db.PosChannelSetRecord.FirstOrDefault(m => m.Id == sub.Id);
                     if(edit != null)
                     {
@@ -77,7 +77,7 @@ public class PosChannelHelper
                             CreateDate = DateTime.Now,
                         }));
                     }
-                }
+                // }
             }
         }  
     }