This commit is contained in:
jl
2024-11-27 10:39:18 +08:00
parent 068fe0a148
commit 90ec40a018
8 changed files with 233 additions and 37 deletions

View File

@ -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);