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.

30 lines
873 B
C#

using Estsh.Core.Base;
using Estsh.Core.Services;
using Estsh.Core.Model.Result;
using Estsh.Core.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace Estsh.Core.Wms.IServices
{
public interface IStockService : IBaseService<SysStock>
{
/// <summary>
/// 根据单据类型获取此类型待处理的单据列表,如果单据类型为空,则获取全部类型
/// </summary>
/// <returns></returns>
public List<WmsMoveHeader> GetMoveOrderList(int? orderType);
/// <summary>
/// 根据单据号获取单据明细列表
/// </summary>
/// <param name="orderNo"></param>
/// <returns></returns>
public List<WmsMoveDetail> GetMoveDetailList(string orderNo);
}
}