From fcdbb4d6cc8eb3629b871a4945ff2da599d64107 Mon Sep 17 00:00:00 2001
From: pan <antony1029@163.com>
Date: 星期六, 29 十一月 2025 17:51:43 +0800
Subject: [PATCH] 提交

---
 项目代码/WMS无仓储版/WIDESEA_WMSServer/WIDESEA_IOutboundService/IOutboundBatchPickingService.cs |   12 ++++++++++++
 1 files changed, 12 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"
index 15027f8..37d8a2f 100644
--- "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"
@@ -1,5 +1,6 @@
 锘縰sing WIDESEA_Core;
 using WIDESEA_Core.BaseRepository;
+using WIDESEA_DTO.Outbound;
 using WIDESEA_Model.Models;
 
 namespace WIDESEA_IOutboundService
@@ -11,7 +12,18 @@
         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