Browse Source

盛付通0押金设置条件限制

lcl 11 tháng trước cách đây
mục cha
commit
09ef1a4fe2
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      AppStart/Helper/ChangePosFeeUtil.cs

+ 2 - 2
AppStart/Helper/ChangePosFeeUtil.cs

@@ -289,8 +289,8 @@ namespace MySystem
             foreach (string SnId in SnIdList)
             {
                 int SnIdNum = int.Parse(SnId);
-                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && m.BindingState == 0 && (string.IsNullOrEmpty(m.SeoKeyword) || m.SeoKeyword == "0"));
-                if (pos == null)
+                PosMachinesTwo pos = db.PosMachinesTwo.FirstOrDefault(m => m.Id == SnIdNum && !string.IsNullOrEmpty(m.SeoKeyword));
+                if (pos != null)
                 {
                     return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
                 }