#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.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); /// /// 成品空框回库 /// /// /// /// WebResponseContent EmptyBackTask(string barCode, string startPoint); /// /// 辅料入库 /// /// WebResponseContent InboundFLTask(string barCode, string startPoint, string matCode, int matCount); /// /// 成品出库 /// /// /// WebResponseContent RequestCPWMSTaskOut(int Count); /// /// 无纺布出库 /// /// /// WebResponseContent RequestWFBWMSTaskOut(int Count); /// /// 原料出库任务 /// /// 物料代码 /// 物料幅宽 /// 卷数 /// WebResponseContent RequestYLWMSTaskOut(string materielCode, int materielWide, int Count, string address = ""); /// /// 原料移库 /// /// /// /// /// WebResponseContent IsRelocation(string startAddress, string endAddress, string roadWay); /// /// 原料巷道间移库任务 /// WebResponseContent RelocationRoadWay(string roadWay,int Count); /// /// 分配巷道 /// /// string AssignCPRoadwayNo(); /// /// 印刷余料退料任务 /// /// /// WebResponseContent PrintBackInbound(SaveModel saveModel); /// /// 印刷下料任务 /// /// /// WebResponseContent PrintInbound(SaveModel saveModel); } }