using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Common.StockEnum; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_Core.Enums; using WIDESEA_IOutboundRepository; using WIDESEA_Model.Models; namespace WIDESEA_IOutboundService { public interface IOutStockLockInfoService : IService { /// /// /// IOutStockLockInfoRepository Repository { get; } /// /// /// /// /// /// /// /// List GetOutStockLockInfos(Dt_OutboundOrder outboundOrder, Dt_OutboundOrderDetail outboundOrderDetail, List outStocks, int? taskNum = null); /// /// /// /// /// /// /// /// /// Dt_OutStockLockInfo GetOutStockLockInfo(Dt_OutboundOrder outboundOrder, Dt_OutboundOrderDetail outboundOrderDetail, Dt_StockInfo outStock, float assignQuantity, int? taskNum = null); /// /// /// /// /// /// /// /// Dt_OutStockLockInfo GetOutStockLockInfo(Dt_MesOutboundOrder mesOutboundOrder, Dt_StockInfo outStock, float assignQuantity, int? taskNum = null); /// /// /// /// /// /// List GetByOrderDetailId(int orderDetailId, OutLockStockStatusEnum? outStockStatus); /// /// 根据出库单号获取出库详情 /// /// /// List OutStockLockInfos(string OrderNo); /// /// /// /// /// List GetStockOutboundOrder(SaveModel saveModel); /// /// 分拣 /// /// 托盘号 /// WebResponseContent MaterialPick(string palletCode); } }