1
wankeda
2025-03-07 b55d324f4b7465f9a7dc50e999346697f5cc35a2
WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs
@@ -37,35 +37,19 @@
    public interface ITaskService : IService<Dt_Task>
    {
        ITaskRepository Repository { get; }
        WebResponseContent GenerateInboundTask(string stationCode, int taskType, string palletCode);
        WebResponseContent InboundRequest(SaveModel saveModel);
        WebResponseContent TaskCompleted(int taskNum);
        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);
@@ -73,24 +57,5 @@
        WebResponseContent InventoryOut(HouseCancelOut houseInventoryOut);
        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; }
        //}
    }
}