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.

16 lines
710 B
C#

using Estsh.Core.Base;
using Estsh.Core.Services;
using Estsh.Core.Models;
namespace Estsh.Core.Wms.IServices
{
public interface IOutSourceBatchService : IBaseService<BaseEntity>
{
public SetObjectDetail GetOutSourceBatchOrderList(string orderNo);
public SetObjectDetail GetOutSourceBatchOrderListByOrderNo(string orderNo);
public SetObjectDetail GetStockByCartonNo(string cartonNo);
public SetObjectDetail CheckStockByCartonAlocate(string cartonNo, string orderNo, string groupNo,string isSplit, string loginId);
public SetObjectDetail CheckStockByCartonAlocateGroup(string carton_No,string orderNo, string groupNo, string isSplit, string loginId);
}
}