heshaofeng
2025-11-29 415931fc8e37495b1be97b975bc409c5b279ce6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using WIDESEA_Core;
using WIDESEA_Core.BaseRepository;
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> ConfirmBatchPicking(string orderNo, string palletCode, string barcode);
        Task<WebResponseContent> ManualSplitPackage(string orderNo, string palletCode, string originalBarcode, decimal splitQuantity);
    }
}