Commit 5199794c LN

1

1 个父辈 a49e5680
......@@ -185,10 +185,6 @@ namespace OnlineStore.DeviceLibrary
{
return false;
}
//加载位置
if (param.MoveP == null)
{
LineMoveP p = new LineMoveP();
ACBoxPosition position = CSVPositionReader<ACBoxPosition>.GetPositon(param.PosID);
if (position == null)
{
......@@ -201,14 +197,18 @@ namespace OnlineStore.DeviceLibrary
LogUtil.error(box.Name + "GetPositon[" + param.ShelfPosID + "]=null,没有库位不能执行出入库");
return false;
}
if (param.PlateH<=0)
if (param.PlateH <= 0)
{
param.PlateH = position.BagHigh;
}
if (param.PlateW<=0)
if (param.PlateW <= 0)
{
param.PlateW = position.BagWidth;
}
//加载位置
if (param.MoveP == null)
{
LineMoveP p = new LineMoveP();
if (sp != null)
{
p.InOut_P101 = sp.InoutAxis_P101;
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!