From 0f5fd08f707eb3aedf7bb7177de2d3cbd6669bdc Mon Sep 17 00:00:00 2001 From: "boxu.zheng" Date: Wed, 10 May 2023 10:59:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20=E6=8B=86=E7=AE=B1?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../TransferNotes/ITransferNoteAppService.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs index 64b8744b3..fc797cf4f 100644 --- a/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs +++ b/be/Modules/Store/src/Win_in.Sfs.Wms.Store.Application.Contracts/Notes/TransferNotes/ITransferNoteAppService.cs @@ -45,4 +45,22 @@ public interface ITransferNoteAppService : /// /// Task SplitPackingAsync(TransferNoteEditInput transferNoteEditInput); + + /// + /// 按条件获取拆箱的分页列表 + /// request sample + /// { + /// "maxResultCount": 1000, + /// "skipCount": 0, + /// "sorting": "", + /// "condition": { "filters": []} + /// } + /// + /// + /// + /// + /// + Task> GetSplitPackingTransferListAsync( + SfsStoreRequestInputBase sfsRequestDTO, bool includeDetails = false, + CancellationToken cancellationToken = default); }