فهرست منبع

获取商户信息,音响码解密

lcl 1 سال پیش
والد
کامیت
d714aba880

+ 1 - 1
Areas/Api/Controllers/v1/MainServer/ConsumerOrdersController.cs

@@ -274,7 +274,7 @@ namespace MySystem.Areas.Api.Controllers.v1
             MerchantQrCode qrcode = MerchantQrCodeDbconn.Instance.Get(SnNo) ?? new MerchantQrCode();
             PosMachinesTwo pos = PosMachinesTwoDbconn.Instance.Get(SnNo) ?? new PosMachinesTwo();
             PosMachines machine = PosMachinesDbconn.Instance.Get(SnNo) ?? new PosMachines();
-            int MerchantId = qrcode.MerchantId;
+            int MerchantId = pos.BindMerchantId;
             if(machine.DeviceKind == "1")
             {
                 MerchantId = machine.BindMerchantId;

+ 14 - 0
Areas/Api/Controllers/v1/MainServer/MerchantInfoController.cs

@@ -778,6 +778,20 @@ namespace MySystem.Areas.Api.Controllers.v1
                 Sn = Sn.TrimEnd('\0');
                 Sn = Sn.Substring(0, 20);
             }
+            if(!string.IsNullOrEmpty(Machine))
+            {
+                if (Machine.Length > 20)
+                {
+                    Machine = System.Web.HttpUtility.UrlDecode(Machine);
+                    if (!Machine.EndsWith("="))
+                    {
+                        Machine += "=";
+                    }
+                    Machine = dbconn.Decrypt3DES(Machine, "l2k0b2#3");
+                    Machine = Machine.TrimEnd('\0');
+                    Machine = Machine.Substring(0, 20);
+                }
+            }
             if(Machine == Sn || Machine == "")
             {
                 MerchantQrCode code = new MerchantQrCodeService().Query(Sn);

+ 2 - 2
Controllers/HomeController.cs

@@ -82,8 +82,8 @@ namespace MySystem.Controllers
             // result = new WeChatFunction().ProfitShareReturn("1646405429", "1611167423", "2023060810550382756164803", DateTime.Now.ToString("yyyyMMddHHmmssfff") + function.get_Random(8), 0.02M);
 
             // result = new WeChatFunction().GetPublicKey();
-
-            return result;
+            
+            return dbconn.Decrypt3DES("ivNsWfAHWqdW6SGcnjl49AANYEWU08pdsaIkU4VgOqQ=", "l2k0b2#3");
         }
     }
 }