You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
609 B
C#

using Estsh.Core.Base;
using Estsh.Core.Services;
using Estsh.Core.Models;
namespace Estsh.Core.Wms.IServices
{
public interface ISaleBatchService : IBaseService<BaseEntity>
{
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);
}
}