using JiepeiWMS.IServices.BASE; using JiepeiWMS.Model; using JiepeiWMS.Model.Models; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace JiepeiWMS.IServices { /// /// IWMSaleInfoServices /// public interface IWMSaleInfoServices : IBaseServices { /// /// 获取领料分页 /// /// Task> GetWMSaleInfoPage(int page, int intPageSize, string key = "", string options = "", string typeoptions = "", DateTime? startdate = null, DateTime? enddate = null, string statusoptions = ""); /// /// 获取领料详情 /// /// /// Task GetWMSaleInfo(int Id); /// /// 获取领料最大的Id /// /// Task GetSaleInfoMaxId(); /// /// 调用友物料出库接口 /// /// Task> BeginMaterialOutInNC(WMSaleInfo infoModel, List detailList); } }