#region << 版 本 注 释 >> /*---------------------------------------------------------------- * 命名空间:WIDESEA_ITaskInfoService * 创建者:胡童庆 * 创建时间:2024/8/2 16:13:36 * 版本:V1.0.0 * 描述: * * ---------------------------------------------------------------- * 修改人: * 修改时间: * 版本:V1.0.1 * 修改说明: * *----------------------------------------------------------------*/ #endregion << 版 本 注 释 >> using Microsoft.AspNetCore.Mvc; using SqlSugar; using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Common.CommonEnum; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_Core.Enums; using WIDESEA_DTO; using WIDESEA_DTO.ERP; using WIDESEA_DTO.MES; using WIDESEA_DTO.Stock; using WIDESEA_DTO.Task; using WIDESEA_ITaskInfoRepository; using WIDESEA_Model.Models; namespace WIDESEA_ITaskInfoService { public interface ITaskService : IService { ITaskRepository Repository { get; } /// /// /// /// /// /// WebResponseContent PushTasksToWCS(List tasks, string agvDescription = ""); /// /// /// /// /// /// WebResponseContent PushTasksToWCSSingle(int taskNum, string agvDescription = ""); /// /// 仅申请任务,让WCS根据路由确定下一地址 /// /// /// /// WebResponseContent DeviceRequestInboundTaskSimple(string stationCode, string palletCode); /// /// 入库任务请求 /// /// WebResponseContent RequestYLWMSTaskSimple(string stationCode, string palletCode); /// /// 分配巷道 /// /// string AssignYLRoadwayNo(string palletCode); /// /// 入库任务申请分配货位 /// /// 任务号 /// 巷道号 /// 托盘类型 /// WebResponseContent AssignInboundTaskLocation(int taskNum, string roadwayNo); /// /// /// /// /// /// /// WebResponseContent AssignInboundTaskLocationByHeight(int taskNum, string roadwayNo, int heightType); /// /// /// /// /// Task TaskCompleted(int taskNum); /// /// /// /// /// /// WebResponseContent IsRelocation(int taskNum, string locationCode); /// /// 选择库存生成出库任务 /// /// /// WebResponseContent Outbound(int id); /// /// /// /// /// /// /// WebResponseContent AssignRoadwayByHeight(List roadwayNos, int taskNum, int heightType = 0); /// /// 分配巷道 /// /// /// /// WebResponseContent AssignRoadway(int taskNum, List roadwayNos, int heightType); /// /// /// /// /// WebResponseContent SingleAssignRoadway(List roadwayNos); /// /// 修改任务状态 /// /// /// WebResponseContent UpdateTaskInfo(WCSTaskDTO task); /// /// MES成品出库接口调用 /// /// WebResponseContent ShipmentOrderSync(MesShipmentOrderSync model); /// /// 成品余料退库入仓 /// /// /// /// WebResponseContent BackProductTask(string barCode, string startPoint); /// /// 成品空框回库 /// /// /// /// WebResponseContent EmptyBackTask(string barCode, string startPoint); } }