This commit is contained in:
@ -49,7 +49,7 @@ namespace Epost.BLL
|
||||
UserCacheDAL.ClearUserCodeList();
|
||||
boxcache.ClearBoxList();
|
||||
ResultModel resultModel = comBLL.Initialization_M();
|
||||
GetOrderQueue(); //加载任务显示器信息
|
||||
// GetOrderQueue(); //加载任务显示器信息
|
||||
|
||||
return resultModel;
|
||||
}
|
||||
@ -81,6 +81,8 @@ namespace Epost.BLL
|
||||
downthread.tblock = "01|01";
|
||||
Work_DisplayJobThread jobthread = new Work_DisplayJobThread();
|
||||
jobthread.tblock = "01|01";
|
||||
Work_ScanThread scantherad = new Work_ScanThread();
|
||||
scantherad.tblock = "01|01";
|
||||
foreach (AddressstorageModel item in Arealist)
|
||||
{
|
||||
string block = item.block + "|" + item.shelfid;
|
||||
@ -98,6 +100,13 @@ namespace Epost.BLL
|
||||
downthread.OrisShow = OrisShow;
|
||||
Thread thread = new Thread(new ThreadStart(downthread.Work));
|
||||
thread.Start();
|
||||
|
||||
scantherad = new Work_ScanThread();
|
||||
scantherad.id = block;
|
||||
scantherad.tblock = block;
|
||||
scantherad.OrisShow = OrisShow;
|
||||
Thread scanthread = new Thread(new ThreadStart(scantherad.ScanList));
|
||||
scanthread.Start();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -293,12 +302,12 @@ namespace Epost.BLL
|
||||
|
||||
lock (showmes)
|
||||
{
|
||||
bool bo = orderbll.isTask(sblock, sarea);
|
||||
// bool bo = orderbll.isTask(sblock, sarea);
|
||||
string msg = string.Empty;
|
||||
if (!bo)
|
||||
{
|
||||
msg = "当前商品无任务\r请送至下一区";
|
||||
}
|
||||
//if (!bo)
|
||||
//{
|
||||
// msg = "当前商品无任务\r请送至下一区";
|
||||
//}
|
||||
DataTable sudt = orderbll.GetSumList("", scanStr, sblock);
|
||||
if (type == 2)
|
||||
{
|
||||
|
Reference in New Issue
Block a user