using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseServices; using WIDESEA_IStockRepository; using WIDESEA_Model.Models; namespace WIDESEA_IStockService { public interface IProStockInfoService : IService { IProStockInfoRepository Repository { get; } /// /// 根据外包信息解绑内包与胶框库存信息 /// /// /// WebResponseContent UnBindStock(List proStockInfoDetails); /// /// 查找可用库存 /// List GetUseableStocks(int warehoseId, Dt_ProOutOrderDetail proOutOrderDetail); /// /// 获取出库库存 /// List GetOutboundStocks(List stockInfos, Dt_ProOutOrderDetail outOrderDetail, float needQuantity, out float residueQuantity); /// /// MES提库可用库存 /// /// public List GetUseableStocks(Dt_MesRworkOutboundOrder mesRworkOutboundOrder); /// /// 获取MES提库库存 /// List GetOutboundStocks(List stockInfos, Dt_MesRworkOutboundOrder mesRworkOutboundOrder, float needQuantity, out float residueQuantity); } }