Ejemplo n.º 1
0
 /// <summary>
 /// 移库管理获得库存信息
 /// 
 /// </summary>
 /// <param name="barCode"></param>
 /// <returns></returns>
 public List<LocalProductEntity> GetList(string barCode)
 {
     LocalProductEntity entity = new LocalProductEntity();
     entity.IncludeAll();
     entity.OrderBy(a => a.ID, EOrderBy.DESC);
     entity.Where(a => a.BarCode == barCode).Or(a => a.ProductNum == barCode);
     List<LocalProductEntity> listResult = this.LocalProduct.GetList(entity);
     return listResult;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// 获得库存信息
        /// </summary>
        /// <param name="barCode"></param>
        /// <returns></returns>
        public List<LocalProductEntity> GetList(string barCode)
        {
            LocalProductEntity entity = new LocalProductEntity();
            entity.IncludeAll();
            entity.OrderBy(a => a.ID, EOrderBy.DESC);
            entity.Where(a => a.BarCode == barCode).Or(a => a.ProductNum == barCode);

            LocationEntity location = new LocationEntity();
            entity.Left<LocationEntity>(location, new Params<string, string>() { Item1 = "LocalNum", Item2 = "LocalNum" });
            location.Where(a => a.LocalType == (int)ELocalType.Normal);
            List<LocalProductEntity> listResult = this.LocalProduct.GetList(entity);
            return listResult;
        }
Ejemplo n.º 3
0
 /// <summary>
 /// 获得产品的当前库存信息
 /// </summary>
 /// <param name="localNum"></param>
 /// <param name="productNum"></param>
 /// <returns></returns>
 public LocalProductEntity GetSingle(string localNum, string productNum)
 {
     LocalProductEntity entity = new LocalProductEntity();
     entity.IncludeAll();
     entity.Where(a => a.LocalNum == localNum).And(a => a.ProductNum == productNum)
         .And(a => a.LocalType == (int)ELocalType.Normal);
     entity = this.LocalProduct.GetSingle(entity);
     return entity;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// 根据库存唯一编码号获取该位置的库存信息以及产品信息
 /// </summary>
 /// <param name="sn"></param>
 /// <returns></returns>
 public LocalProductEntity GetLocalProductBySn(string sn, string productNum = null)
 {
     LocalProductEntity entity = new LocalProductEntity();
     entity.IncludeAll();
     ProductEntity ProEntity = new ProductEntity();
     ProEntity.Include(a => new { Size = a.Size, InPrice = a.InPrice });
     entity.Left<ProductEntity>(ProEntity, new Params<string, string>() { Item1 = "ProductNum", Item2 = "SnNum" });
     entity.Where(a => a.Sn == sn);
     if (!productNum.IsEmpty())
     {
         entity.Where(a => a.ProductNum == productNum);
     }
     entity = this.LocalProduct.GetSingle(entity);
     return entity;
 }
Ejemplo n.º 5
0
        /// <summary>
        /// 在线库存报表
        /// </summary>
        /// <param name="entity"></param>
        /// <param name="pageInfo"></param>
        /// <returns></returns>
        public List<LocalProductEntity> GetList(LocalProductEntity entity, ref PageInfo pageInfo)
        {
            entity.IncludeAll();
            ProductEntity ProEntity = new ProductEntity();
            ProEntity.Include(a => new { Size = a.Size, AvgPrice = a.AvgPrice,CateNum=a.CateNum, CateName = a.CateName, MinNum = a.MinNum, MaxNum = a.MaxNum });
            entity.Left<ProductEntity>(ProEntity, new Params<string, string>() { Item1 = "ProductNum", Item2 = "SnNum" });
            entity.OrderBy(a => a.ID, EOrderBy.DESC);
            int rowCount = 0;
            List<LocalProductEntity> listResult = this.LocalProduct.GetList(entity, pageInfo.PageSize, pageInfo.PageIndex, out rowCount);
            pageInfo.RowCount = rowCount;

            List<ProductCategoryEntity> listCates = new ProductCategoryProvider().GetList();
            listCates = listCates.IsNull() ? new List<ProductCategoryEntity>() : listCates;
            if (!listResult.IsNullOrEmpty())
            {
                foreach (LocalProductEntity item in listResult)
                {
                    if (item.CateName.IsEmpty())
                    {
                        ProductCategoryEntity cate = listCates.FirstOrDefault(a => a.CateNum == item.CateNum);
                        item.CateName = cate == null ? "" : cate.CateName;
                    }
                }
            }
            return listResult;
        }
Ejemplo n.º 6
0
 /// <summary>
 /// 根据产品条码或者产品编号或者产品名称搜索库存产品数量以及库存位置
 /// 主要用于选择产品的界面中搜索功能。在搜索到相应产品之后查询库存信息
 /// </summary>
 /// <returns></returns>
 public List<LocalProductEntity> GetList(string barCode)
 {
     LocalProductEntity entity = new LocalProductEntity();
     entity.IncludeAll();
     ProductEntity ProEntity = new ProductEntity();
     ProEntity.Include(a => new { Size = a.Size, InPrice = a.InPrice });
     entity.Left<ProductEntity>(ProEntity, new Params<string, string>() { Item1 = "ProductNum", Item2 = "SnNum" });
     entity.Where(a => a.BarCode == barCode);
     entity.OrderBy(a => a.ID, EOrderBy.DESC);
     List<LocalProductEntity> listResult = this.LocalProduct.GetList(entity);
     return listResult;
 }