using JiepeiWMS.IServices.BASE; using JiepeiWMS.Model.Models; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace JiepeiWMS.IServices { /// /// IWMPurchaseQuoteDetailServices /// public interface IWMPurchaseQuoteDetailServices : IBaseServices { /// /// 入库 /// /// 详细信息列表 /// 当前用户 /// 错误信息 Task Enter(WMPurchaseQuoteDetail[] Details, int UserId); /// /// 设置审核不通过 /// /// 设置为审核不通过 /// 操作人 /// 错误信息,空则正常 Task SetNoPass(int[] Ids, int UserId); /// /// 调用友采购入库接口 /// /// Task> BeginPurchaseinInNC(WMQuoteInfo infoModel, List detailList); } }