1
yangpeixing
2026-03-02 4a1765ea61fb8706bddbf90b91b310e2ce0e9f7d
WMS/WIDESEA_WMSServer/WIDESEA_IStockService/IStockInfoService.cs
@@ -24,12 +24,26 @@
        //List<Dt_StockInfo> GetUseableStocks(string materielCode, string batchNo,,string , int warehoseId);
        List<Dt_StockInfo> GetUseableStocks(string materielCode, string palletcode, int warehoseId);
        List<Dt_StockInfo> GetUseableStocks(string materielCode, string palletcode, List<Dt_Warehouse> warehouse);
        //List<Dt_StockInfo> GetUseableStocks(string materielCode, string batchNo, int warehoseId);
        List<StockSelectViewDTO> GetStockSelectViews(string materielCode);
        List<Dt_StockInfo> GetOutboundStocks(List<Dt_StockInfo> stockInfos, string materielCode, decimal needQuantity, out decimal residueQuantity);
        public List<Dt_StockInfo> DWANDYSGetOutboundStocks(List<Dt_StockInfo> stockInfos,List<Dt_OutboundOrderDetail> dt_OutboundOrderDetails, out List<residueQuantity> residueQuantitys);
        public List<Dt_StockInfo> CPGetOutboundStocks(List<Dt_StockInfo> stockInfos, List<Dt_NewOutboundOrderDetail> dt_OutboundOrderDetails, out List<residueQuantity> residueQuantitys);
        /// <summary>
        ///
        /// </summary>
        public class residueQuantity
        {
            public string MaterielCode { get; set; }
            public string BatchNo { get; set; }
            public decimal NewNeendQuantity { get; set; }
        }
    }
}