This commit is contained in:
@ -28,17 +28,19 @@ namespace Epost.DPS.Controllers
|
||||
string state = string.Empty;
|
||||
if (data.method == "start")
|
||||
{
|
||||
state = "2";//任务开始启动
|
||||
state = "1";//任务开始启动
|
||||
}
|
||||
else if (data.method == "outbin") {
|
||||
state = "3";//走出储位
|
||||
state = "2";//走出储位
|
||||
}
|
||||
else if (data.method == "end")
|
||||
{
|
||||
state = "4";
|
||||
state = "3";
|
||||
//更新任务已完成
|
||||
}
|
||||
else if (data.method == "cancel") { }
|
||||
else if (data.method == "cancel") {
|
||||
state = "88";
|
||||
}
|
||||
else { }
|
||||
|
||||
inboundBLL.UpInOrderListByAgvid(data.taskCode,state);
|
||||
|
Reference in New Issue
Block a user