public virtual OperationResult Create(ProductWareStockInfo info)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     using (var DbContext = new MRPDbContext())
     {
       ProductWareStock entity = new ProductWareStock();
       DESwap.ProductWareStockDTE(info, entity);
       ProductWareStockRpt.Insert(DbContext, entity);
       DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
        public virtual List<ProductWareStockInfo> ListAllByCondition(NameValueCollection searchCondtionCollection, NameValueCollection sortCollection)
        {
            List<ProductWareStock> list = null;

            using (var DbContext = new MRPDbContext())
            {
            var query = from i in DbContext.ProductWareStock
                        select i;

            #region 条件
            foreach (string key in searchCondtionCollection)
            {
                string condition = searchCondtionCollection[key];
                switch (key.ToLower())
                {
                    case "isvalid":
                        int value = Convert.ToInt32(condition);
                        query = query.Where(x => x.SYS_IsValid.Equals(value));
                        break;
                    default:
                        break;
                }
            }
            #endregion

            #region 排序
            foreach (string sort in sortCollection)
            {
                string direct = string.Empty;
                switch (sort.ToLower())
                {
                    case "createtime":
                        if (direct.ToLower().Equals("asc"))
                        {
                            query = query.OrderBy(x => new { x.SYS_CreateTime });
                        }
                        else
                        {
                            query = query.OrderByDescending(x => new { x.SYS_CreateTime });
                        }
                        break;
                    default:
                        query = query.OrderByDescending(x => new { x.SYS_OrderSeq });
                        break;
                }
            }
               list = query.ToList();
            }
            #endregion
            #region linq to entity
            List<ProductWareStockInfo> ilist = new List<ProductWareStockInfo>();
            list.ForEach(x =>
            {
                ProductWareStockInfo info = new ProductWareStockInfo();
                DESwap.ProductWareStockETD(x, info);
                ilist.Add(info);
            });
            #endregion

            return ilist;;
        }
Example #3
0
        public static void ProductWareStockETD(ProductWareStock entity, ProductWareStockInfo info)
        {
            info.Id = entity.Id;
               info._IdIsDirty = 0;

               info.ProductId = entity.ProductId;
               info._ProductIdIsDirty = 0;

               info.WareHouseId = entity.WareHouseId;
               info._WareHouseIdIsDirty = 0;

               info.MinStock = entity.MinStock;
               info._MinStockIsDirty = 0;

               info.Stock = entity.Stock;
               info._StockIsDirty = 0;

               info.MaxStock = entity.MaxStock;
               info._MaxStockIsDirty = 0;

               info.SYS_OrderSeq = entity.SYS_OrderSeq;
               info._SYS_OrderSeqIsDirty = 0;

               info.SYS_IsValid = entity.SYS_IsValid;
               info._SYS_IsValidIsDirty = 0;

               info.SYS_IsDeleted = entity.SYS_IsDeleted;
               info._SYS_IsDeletedIsDirty = 0;

               info.SYS_Remark = entity.SYS_Remark;
               info._SYS_RemarkIsDirty = 0;

               info.SYS_StaffId = entity.SYS_StaffId;
               info._SYS_StaffIdIsDirty = 0;

               info.SYS_StationId = entity.SYS_StationId;
               info._SYS_StationIdIsDirty = 0;

               info.SYS_DepartmentId = entity.SYS_DepartmentId;
               info._SYS_DepartmentIdIsDirty = 0;

               info.SYS_CompanyId = entity.SYS_CompanyId;
               info._SYS_CompanyIdIsDirty = 0;

               info.SYS_AppId = entity.SYS_AppId;
               info._SYS_AppIdIsDirty = 0;

               info.SYS_CreateTime = entity.SYS_CreateTime;
               info._SYS_CreateTimeIsDirty = 0;

               info.SYS_ModifyTime = entity.SYS_ModifyTime;
               info._SYS_ModifyTimeIsDirty = 0;

               info.SYS_DeleteTime = entity.SYS_DeleteTime;
               info._SYS_DeleteTimeIsDirty = 0;
        }
 public virtual ProductWareStockInfo Load(string key)
 {
     ProductWareStockInfo info = new ProductWareStockInfo();
     using (var DbContext = new MRPDbContext())
     {
     ProductWareStock entity = ProductWareStockRpt.Get(DbContext, key);
     DESwap.ProductWareStockETD(entity,info);
     }
     return info;
 }
        public PageResult<ProductWareStockInfo> ListByCondition(NameValueCollection searchCondtionCollection, NameValueCollection sortCollection, int pageNumber, int pageSize)
        {
            PageResult<ProductWareStockInfo> result = new PageResult<ProductWareStockInfo>();
            int skip = (pageNumber - 1) * pageSize;
            int take = pageSize;
            List<ProductWareStock> list = null;

            using (var DbContext = new MRPDbContext())
            {
            var query = from i in DbContext.ProductWareStock
                        select i;

            #region 条件
            foreach (string key in searchCondtionCollection)
            {
                string condition = searchCondtionCollection[key];
                switch (key.ToLower())
                {
                    case "isvalid":
                        int value = Convert.ToInt32(condition);
                        query = query.Where(x => x.SYS_IsValid.Equals(value));
                        break;
                    default:
                        break;
                }
            }
            #endregion

            result.TotalRecords = query.Count();

            #region 排序
            foreach (string sort in sortCollection)
            {
                string direct = string.Empty;
                switch (sort.ToLower())
                {
                    case "createtime":
                        if (direct.ToLower().Equals("asc"))
                        {
                            query = query.OrderBy(x => new { x.SYS_CreateTime }).Skip(skip).Take(take);
                        }
                        else
                        {
                            query = query.OrderByDescending(x => new { x.SYS_CreateTime }).Skip(skip).Take(take);
                        }
                        break;
                    default:
                        query = query.OrderByDescending(x => new { x.SYS_OrderSeq }).Skip(skip).Take(take);
                        break;
                }
            }
               list = query.ToList();
            }
            #endregion
            #region linq to entity
            List<ProductWareStockInfo> ilist = new List<ProductWareStockInfo>();
            list.ForEach(x =>
            {
                ProductWareStockInfo info = new ProductWareStockInfo();
                DESwap.ProductWareStockETD(x, info);
                ilist.Add(info);
            });
            #endregion

            result.PageSize = pageSize;
            result.PageNumber = pageNumber;
            result.Data = ilist;
            return result;;
        }