|
@@ -289,8 +289,8 @@ namespace MySystem
|
|
foreach (string SnId in SnIdList)
|
|
foreach (string SnId in SnIdList)
|
|
{
|
|
{
|
|
int SnIdNum = int.Parse(SnId);
|
|
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 + "已设置押金,请勿重复设置";
|
|
return "机具" + pos.PosSn + "已设置押金,请勿重复设置";
|
|
}
|
|
}
|