소스 검색

若收款码或音响码已是绑定状态,返回对应提示

DuGuYang 1 년 전
부모
커밋
e00f09f5db
1개의 변경된 파일8개의 추가작업 그리고 0개의 파일을 삭제
  1. 8 0
      Areas/Api/Controllers/v1/MainServer/MerchantQrCodeController.cs

+ 8 - 0
Areas/Api/Controllers/v1/MainServer/MerchantQrCodeController.cs

@@ -114,6 +114,14 @@ namespace MySystem.Areas.Api.Controllers.v1
             PosMachinesTwo pos = new PosMachinesTwoService().Query(SnNo);
             PosMachines machines = new PosMachinesService().Query(SnNo);
             MerchantInfo merchant = new MerchantInfoService().Query(MerchantId);
+            if (pos.BindingState == 1)
+            {
+                return new AppResultJson() { Status = "-1", Info = "此码已被绑定" };
+            }
+            if (machines.BindingState == 1)
+            {
+                return new AppResultJson() { Status = "-1", Info = "此码已被绑定" };
+            }
             int PosId = 0;
             if (SnNo == MachineNo || string.IsNullOrEmpty(MachineNo))
             {