Commit dcf9d06d LN

增加提示:门未关闭,无法执行出库

1 个父辈 e16deef5
......@@ -364,5 +364,9 @@ namespace OnlineStore.DeviceLibrary
/// 未扫到二维码,需要将料盘送出
/// </summary>
public static string InStoreNoCode = "InStoreNoCode";
/// <summary>
/// 门未关闭,无法执行出库
/// </summary>
public static string TheDoorOpen = "TheDoorOpen";
}
}
......@@ -1649,9 +1649,12 @@ namespace OnlineStore.DeviceLibrary
{
boxStatus.SetMsg(ResourceControl.GetString(ResourceControl.HasWare, "叉子料盘检测有料,请检查"),ResourceControl.HasWare);
lineOperation.SetMsg(ResourceControl.GetString(ResourceControl.HasWare, "叉子料盘检测有料,请检查"), ResourceControl.HasWare);
}else if(waitOutStoreList.Count>0 && (!AutomaticBaiting.DoorCloseOK()))
{
boxStatus.SetMsg(ResourceControl.GetString(ResourceControl.TheDoorOpen, "门锁未关闭,无法出库"), ResourceControl.HasWare);
lineOperation.SetMsg(ResourceControl.GetString(ResourceControl.TheDoorOpen, "门锁未关闭,无法出库"), ResourceControl.HasWare);
}
}
}
//WarnMsg = "";
//状态
boxStatus.status = GetStoreStatus();
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!