Browse Source

切换金控接口通道

lcl 6 months ago
parent
commit
ae1b7ef317

+ 26 - 26
AppStart/Helper/ChangePosFeeUtil.cs

@@ -38,9 +38,9 @@ namespace MySystem
                 }
                 //判断是否存在关联数据
                 string content = "";
-                PosMachineOther otherPos = db.PosMachineOther.FirstOrDefault(m => m.Id == pos.Id);
-                if(otherPos != null)
-                {
+                // PosMachineOther otherPos = db.PosMachineOther.FirstOrDefault(m => m.Id == pos.Id);
+                // if(otherPos != null)
+                // {
                     function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
                     content = PublicImportDataService.Instance.LkbSetDeposit(pos.PosSn, decimal.Parse(DepositId));
                     function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
@@ -55,29 +55,29 @@ namespace MySystem
                     {
                         return jsonObj["respMsg"].ToString();
                     }
-                }
-                else
-                {
-                    function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
-                    content = function.GetWebRequest("http://sp.kexiaoshuang.com/api/test/SetDeposit?sn=" + pos.PosSn + "&num=" + DepositId);
-                    function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
-                    if (content == "fail")
-                    {
-                        return "机具" + pos.PosSn + "设置失败";
-                    }
-                    JsonData jsonObj = JsonMapper.ToObject(content);
-                    if (jsonObj["code"].ToString() != "000000")
-                    {
-                        return jsonObj["message"].ToString();
-                    }
-                    content = jsonObj["data"].ToString();
-                    content = PublicImportDataService.Instance.Decrypt(content);
-                    JsonData contentObj = JsonMapper.ToObject(content);
-                    if (contentObj["respCode"].ToString() != "00")
-                    {
-                        return contentObj["respMsg"].ToString();
-                    }
-                }
+                // }
+                // else
+                // {
+                //     function.WriteLog(DateTime.Now.ToString() + ":请求参数," + pos.PosSn + ":" + DepositId, "金控-设置押金-返回报文");
+                //     content = function.GetWebRequest("http://sp.kexiaoshuang.com/api/test/SetDeposit?sn=" + pos.PosSn + "&num=" + DepositId);
+                //     function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
+                //     if (content == "fail")
+                //     {
+                //         return "机具" + pos.PosSn + "设置失败";
+                //     }
+                //     JsonData jsonObj = JsonMapper.ToObject(content);
+                //     if (jsonObj["code"].ToString() != "000000")
+                //     {
+                //         return jsonObj["message"].ToString();
+                //     }
+                //     content = jsonObj["data"].ToString();
+                //     content = PublicImportDataService.Instance.Decrypt(content);
+                //     JsonData contentObj = JsonMapper.ToObject(content);
+                //     if (contentObj["respCode"].ToString() != "00")
+                //     {
+                //         return contentObj["respMsg"].ToString();
+                //     }
+                // }
                 function.WriteLog(DateTime.Now.ToString() + "\n" + content, "金控-设置押金-返回报文");
                 var BeforeDeposit = 0;
                 if (string.IsNullOrEmpty(pos.PrizeParams))

+ 0 - 1
AppStart/Helper/PublicImportDataService.cs

@@ -1100,7 +1100,6 @@ namespace MySystem
         }
 
         #endregion
-
         
         #region 来客吧L版
         // 生产环境

+ 7 - 17
AppStart/Helper/SetDepositPostService.cs

@@ -91,28 +91,18 @@ namespace MySystem
                                     {
                                         addRate = addRate * 100;
                                         // string content = function.GetWebRequest("http://connect.kexiaoshuang.com/home/setfee?merNo=" + merchant.KqMerNo + "&sn=" + pos.PosSn + "&fee=" + Fee + "&addRate=" + addRate);
-                                        string content = SetFee(merchant.KqMerNo, pos.PosSn, Fee, addRate);
+                                        // string content = SetFee(merchant.KqMerNo, pos.PosSn, Fee, addRate);
+                                        string content = PublicImportDataService.Instance.LkbSetFee(pos.PosSn, Fee, addRate);
                                         JsonData obj = JsonMapper.ToObject(content);
-                                        if (obj["code"].ToString() == "000000")
+                                        if (obj["respCode"].ToString() == "00")
                                         {
-                                            JsonData subobj = JsonMapper.ToObject(Decrypt(obj["data"].ToString()));
-                                            if(subobj["errorCode"].ToString() == "0000")
-                                            {
-                                                pos.SeoDescription = "设置成功";
-                                                SetRecordResult(db, RecordId, 1, "设置成功");
-                                                db.SaveChanges();
-                                            }
-                                            else
-                                            {
-                                                string msg = subobj["errorCodeDesc"].ToString();
-                                                pos.SeoDescription = msg;
-                                                SetRecordResult(db, RecordId, -1, msg);
-                                                db.SaveChanges();
-                                            }
+                                            pos.SeoDescription = "设置成功";
+                                            SetRecordResult(db, RecordId, 1, "设置成功");
+                                            db.SaveChanges();
                                         }
                                         else
                                         {
-                                            string msg = obj["message"].ToString();
+                                            string msg = obj["respMsg"].ToString();
                                             pos.SeoDescription = msg;
                                             SetRecordResult(db, RecordId, -1, msg);
                                             db.SaveChanges();

+ 6 - 6
Startup.cs

@@ -147,12 +147,12 @@ namespace MySystem
             }
             if(Library.ConfigurationManager.EnvironmentFlag == 2)
             {
-                // SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
-                // SetDepositService.Instance.Start(); //调整费率(通知、标记)
-                // SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
-                // SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
-                // ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
-                // SetSftFeeService.Instance.Start(); //盛付通420天费率加万2
+                SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
+                SetDepositService.Instance.Start(); //调整费率(通知、标记)
+                SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
+                SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
+                ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
+                SetSftFeeService.Instance.Start(); //盛付通420天费率加万2
             }
         }