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);
|
}
|
}
|