浏览代码

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

lcl 1 年之前
父节点
当前提交
1e247636bc
共有 1 个文件被更改,包括 4 次插入4 次删除
  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,
                         }));
                     }
-                }
+                // }
             }
         }  
     }