wankeda
6 天以前 96f8501cc973232b340e36a61992ec1ad47e4a31
WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs
@@ -37,60 +37,27 @@
    public interface ITaskService : IService<Dt_Task>
    {
        ITaskRepository Repository { get; }
        WebResponseContent GenerateInboundTask(string stationCode, int taskType, string palletCode);
        WebResponseContent InboundRequest(SaveModel saveModel);
        WebResponseContent InboundRequest(string stationCode, string roadwayNo, string palletCode);
        WebResponseContent TaskCompleted(int taskNum);
        WebResponseContent UpdateTaskStatus(int tasknum, int tasktype);
        WebResponseContent GenerateOutboundTask(int orderDetailId, List<StockSelectViewDTO> stockSelectViews);
        //WebResponseContent GenerateOutboundTasks(int orderDetailId, List<StockSelectViewDTO> stockSelectViews);
        WebResponseContent GenerateOutboundTask(int[] keys);
        WebResponseContent PalletOutboundTask(string roadwayNo, string endStation);
        WebResponseContent CallMateriel(string endPoint);
        WebResponseContent MaterielCarry(string startPoint);
        WebResponseContent IsRelocations(int TaskNum, string SourceAddress);
        //WebResponseContent GenerateInventoryInformation(GenerateInv generate);
        WebResponseContent ManualOutbound(SaveModel saveModel);
        WebResponseContent ManualOutbound2(SaveModel saveModel);
        WebResponseContent ManualOutbound3(SaveModel saveModel);
        WebResponseContent ManualOutbound4(SaveModel saveModel);
        WebResponseContent ManualOutboundDeleteinventory(SaveModel saveModel);
        //WebResponseContent Empty_outbound(GenerateInv generate);
        //WebResponseContent Queryinventory(GenerateInv generate);
        WebResponseContent PalletQueryinventory();
        //WebResponseContent RelocationTaskCompleted(GenerateInv2 generate);
        //WebResponseContent Rawmaterialout(GenerateInv3 generate);
        WebResponseContent Cancelinventory(int taskNum);
        WebResponseContent InboundTaskCompleted(int taskNum);
        WebResponseContent OutboundTaskCompleted(int taskNum);
        WebResponseContent AddOutboundOrders(Houseounbound orderAddDTO);
        WebResponseContent InventoryOut(HouseCancelOut houseInventoryOut);
        WebResponseContent InventoryIn(string name);
        WebResponseContent InventoryIn(string name, int qty);
        //public class GenerateInv
        //{
        //    public string SourceAddress { get; set; }
        //    public string PalletCode { get; set; }
        //}
        //public class GenerateInv2
        //{
        //    public string PalletCode { get; set; }
        //    public string SourceAddress { get; set; }
        //    public string TargetAddress { get; set; }
        //}
        //public class GenerateInv3
        //{
        //    public string PalletCode { get; set; }
        //    public int outCount { get; set; }
        //    public string TargetAddress { get; set; }
        //}
    }
}