using System;
using System.Collections.Generic;
using System.Text;
using Model.ModelDto.BllCheckDto;
using WMS.Entity.DataEntity;
namespace WMS.IBLL.IPdaServer
{
public interface IPdaCrServer
{
#region 盘点
///
/// 获取盘库单正在执行单号
///
/// 托盘码
///
List GetStockCheckNoList(string palletNo);
///
/// 获取盘点明细
///
/// 单据号
/// 托盘号
///
List GetStockCheckDetailList(string crNo,string palletNo);
///
/// 获取要盘点的箱码信息(盘点记录中数据)
///
/// 单据号
/// 盘点明细ID 物料-批次
/// 托盘号
/// 箱码号
///
List GetStockCheckLogList(string crNo, string crDetail,string palletNo,string boxNo);
///
/// 盘点库存
///
/// 单据号
/// 物料批次
/// 托盘码
/// 数量
/// 实际数量
///
void CrSetCheck(string crNo, string crDetail, string palletNo, int? qty,int sQty,int userId);
#endregion
#region 库存查询
///
/// pda库存查询
///
/// 储位编号
/// 托盘号
/// 物料名称
///
public List GetStockQueryList(string locatNo, string palletNo, string skuName);
#endregion
}
}