using Estsh.Core.Base; using Estsh.Core.Services; using Estsh.Core.Models; namespace Estsh.Core.Wms.IServices { public interface ISaleBatchService : IBaseService { public SetObjectDetail GetSaleBatchOrderList(string orderNo); public SetObjectDetail GetSaleBatchOrderListByOrderNo(string orderNo); public SetObjectDetail CheckStockByCartonAlocate(string cartonNo, string orderNo, string isSplit); public SetObjectDetail doSaleBatch(string cartonNo, string orderNo, string groupNo, string isSplit, string loginId, string customBarcode); } }