xls文件更新
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -34,6 +34,7 @@ import java.util.stream.Collectors;
|
||||
* 1、比如要N个空箱子或N个满料料箱。查询出来以后,一个码都无法扫描出来,这时候标记这些箱子为异常
|
||||
* 2、箱码扫描不出来,则用手持经过WMS中转传输给WCS,最后给电器。
|
||||
* 3、AGV搬运过程中异常(非AGVERR),查询条件为设备、起始点等未完成的时候(有可能不是异常)。
|
||||
*
|
||||
* @date 2023/3/22
|
||||
*/
|
||||
@Service
|
||||
@@ -141,10 +142,11 @@ public class CacheLineHandServiceImpl implements CacheLineHandService{
|
||||
SpeMachineryTask SpeMachineryTask = new SpeMachineryTask();
|
||||
WQLObject taskTab = WQLObject.getWQLObject("sch_base_task");
|
||||
JSONObject taskObject = taskTab.query("task_id =" + param.getString("instruct_uuid")).uniqueResult(0);
|
||||
//01-取消、02-完成、03-重发,根据操作类型执行相关操作
|
||||
//01-取消、02-完成、03-任务下发,根据操作类型执行相关操作
|
||||
if("01".equals(optType) || "02".equals(optType)) {
|
||||
updateTaskStatus(taskObject, optType);
|
||||
}
|
||||
//任务下发
|
||||
if("03".equals(optType)) {
|
||||
SpeMachineryTask.createTask(taskObject);
|
||||
}
|
||||
@@ -165,7 +167,7 @@ public class CacheLineHandServiceImpl implements CacheLineHandService{
|
||||
}
|
||||
|
||||
@Override
|
||||
public Object cacheLineMaterCheck() {
|
||||
public Object cacheLineMaterCheck() {
|
||||
WQLObject positionTab = WQLObject.getWQLObject("sch_cacheline_position");
|
||||
JSONArray positionArr = positionTab.query("is_delete = '0'").getResultJSONArray(0);
|
||||
// 缓存线位置表
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user