1.相同物料同时出库 不同物料分批次出库 相邻两次亮灯颜色为绿色、蓝色、绿色、蓝色
This commit is contained in:
@ -5,6 +5,7 @@ using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using TouchSocket.Core;
|
||||
using WCS.BLL.Config;
|
||||
using WCS.DAL.Db;
|
||||
using WCS.DAL.DbModels;
|
||||
|
||||
@ -235,6 +236,15 @@ namespace WCS.BLL.HardWare
|
||||
var data4 = outDataStr.Substring(0, 8);
|
||||
GoInOutstoreModeData[3] = Convert.ToByte(data3, 2);
|
||||
GoInOutstoreModeData[4] = Convert.ToByte(data4, 2);
|
||||
|
||||
if (LocalFile.Config.IsSameMatCodeOut)
|
||||
{
|
||||
GoInOutstoreModeData[5] = LocalStatic.CurrentOutStoreColor;
|
||||
}
|
||||
else
|
||||
{
|
||||
GoInOutstoreModeData[5] = 0x02;
|
||||
}
|
||||
}
|
||||
tcpClient.Send(tcpClient.GenerateMessage(BoardId, GoInOutstoreModeData));
|
||||
}
|
||||
|
Reference in New Issue
Block a user