From 8639f19c82f6e263654db44286256bb8d028d2c2 Mon Sep 17 00:00:00 2001
From: 647556386 <647556386@qq.com>
Date: 星期日, 30 十一月 2025 10:10:40 +0800
Subject: [PATCH] 1

---
 项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundBatchPickingService.cs |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)

diff --git "a/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundBatchPickingService.cs" "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundBatchPickingService.cs"
new file mode 100644
index 0000000..37d8a2f
--- /dev/null
+++ "b/\351\241\271\347\233\256\344\273\243\347\240\201/WMS\346\227\240\344\273\223\345\202\250\347\211\210/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundBatchPickingService.cs"
@@ -0,0 +1,29 @@
+锘縰sing WIDESEA_Core;
+using WIDESEA_Core.BaseRepository;
+using WIDESEA_DTO.Outbound;
+using WIDESEA_Model.Models;
+
+namespace WIDESEA_IOutboundService
+{
+    public interface IOutboundBatchPickingService
+    {
+        IRepository<Dt_PickingRecord> Repository { get; }
+
+        Task<WebResponseContent> BatchReturnStock(string orderNo, string palletCode);
+        Task<WebResponseContent> CancelPicking(string orderNo, string palletCode, string barcode);
+        Task<WebResponseContent> CancelSplitPackage(string orderNo, string palletCode, string newBarcode);
+
+        Task<WebResponseContent> CancelSplitPackageChain(string orderNo, string palletCode, string startBarcode);
+
+        Task<List<Dt_SplitPackageRecord>> GetSplitPackageChain(string orderNo, string startBarcode);
+        Task<string> FindRootBarcode(string orderNo, string startBarcode);
+        Task<WebResponseContent> GetSplitPackageChainInfo(string orderNo, string barcode);
+        Task<WebResponseContent> ConfirmBatchPicking(string orderNo, string palletCode, string barcode);
+        Task<List<PalletLockInfoDto>> GetPalletLockInfos(string orderNo, string palletCode);
+        Task<List<PalletPickedInfoDto>> GetPalletPickedList(string orderNo, string palletCode);
+        Task<PalletStatusDto> GetPalletStatus(string orderNo, string palletCode);
+        Task<SplitPackageInfoDto> GetSplitPackageInfo(string orderNo, string palletCode, string barcode);
+        Task<WebResponseContent> ManualSplitPackage(string orderNo, string palletCode, string originalBarcode, decimal splitQuantity);
+        Task<WebResponseContent> RemoveEmptyPallet(string orderNo, string palletCode);
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.3