|
@@ -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);
|