采购查询接口优化
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.InStockTask;
|
||||
using WMS.Web.Core.Internal.Results;
|
||||
|
||||
namespace WMS.Web.Domain.IService
|
||||
@@ -11,11 +12,17 @@ namespace WMS.Web.Domain.IService
|
||||
/// </summary>
|
||||
public interface IInStockTaskService
|
||||
{
|
||||
/// <summary>
|
||||
/// 来源单-编号模糊查询-pad
|
||||
/// </summary>
|
||||
/// <param name="sourceBillNo"></param>
|
||||
/// <returns></returns>
|
||||
Task<ResultList<InStockTaskBillNoQueryResponse>> GetPurchaseInstockTask(string sourceBillNo);
|
||||
/// <summary>
|
||||
/// 同步:采购入库类型单据
|
||||
/// </summary>
|
||||
/// <param name="isTransaction"></param>
|
||||
/// <returns></returns>
|
||||
Task<Result> SsynPurchaseInStock(bool isTransaction);
|
||||
Task<Result> SsynPurchaseInStock(List<string> billNos = null, bool isTransaction=true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user