public virtual OperationResult Create(ArticleCatalogInfo info)
 {
     OperationResult result = new OperationResult(OperationResultType.Error, "操作失败,请稍后重试!");
     using (var DbContext = new CmsDbContext())
     {
       ArticleCatalog entity = new ArticleCatalog();
       DESwap.ArticleCatalogDTE(info, entity);
       ArticleCatalogRpt.Insert(DbContext, entity);
       DbContext.SaveChanges();
     }
     result.ResultType = OperationResultType.Success;
     result.Message = "操作成功!";
     return result;
 }
Esempio n. 2
0
        public ViewResult ArticleCatalogForm(string key)
        {
            ViewBag.Title = "ArticleCatalogForm";
            ViewBag.DicArticleCatalog = PublicMethod.ListAllArticleCatalog(ArticleCatalogService, key);

            if (string.IsNullOrEmpty(key))
            {
                ArticleCatalogInfo info = new ArticleCatalogInfo();
                return View(info);
            }
            else
            {
                ArticleCatalogInfo info = ArticleCatalogService.Load(key);
                return View(info);
            }
        }
Esempio n. 3
0
 public JsonResult UpdateArticleCatalogValid(string key, string validstatus)
 {
     ArticleCatalogInfo info = new ArticleCatalogInfo();
     if (!string.IsNullOrEmpty(key) && !string.IsNullOrEmpty(validstatus))
     {
         info.Id = key;
         info.SYS_IsValid = int.Parse(validstatus);
         OperationResult opr = ArticleCatalogService.Modify(info);
         return Json(new JsonResultHelper(opr.Message));
     }
     else
     {
         return Json(new JsonResultHelper(false, "选择的记录无效", ""));
     }
 }
Esempio n. 4
0
        public ActionResult SaveArticleCatalog(ArticleCatalogInfo info)
        {
            OperationResult opr = new OperationResult(OperationResultType.Success);
            try
            {
                if (string.IsNullOrEmpty(info.Id))
                {
                    info.Id = System.Guid.NewGuid().ToString();
                    opr = ArticleCatalogService.Create(info);
                }
                else
                {
                    opr = ArticleCatalogService.Modify(info);

                }
                ViewBag.DicArticleCatalog = PublicMethod.ListAllArticleCatalog(ArticleCatalogService, info.Id);

                ViewBag.PromptMsg = opr.Message;
            }
            catch (Exception err)
            {
                ViewBag.PromptMsg = err.Message;
            }

            return View("ArticleCatalogForm", info);
        }
Esempio n. 5
0
 public JsonResult DeleteArticleCatalog(string key)
 {
     ArticleCatalogInfo info = new ArticleCatalogInfo();
     if (!string.IsNullOrEmpty(key))
     {
         info.Id = key;
         OperationResult opr = ArticleCatalogService.Remove(key);
         return Json(new JsonResultHelper(opr.Message));
     }
     else
     {
         return Json(new JsonResultHelper(false, "选择的记录无效", ""));
     }
 }
        public virtual List<ArticleCatalogInfo> ListAllByCondition(NameValueCollection searchCondtionCollection, NameValueCollection sortCollection)
        {
            List<ArticleCatalog> list = null;

            using (var DbContext = new CmsDbContext())
            {
            var query = from i in DbContext.ArticleCatalog
                        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<ArticleCatalogInfo> ilist = new List<ArticleCatalogInfo>();
            list.ForEach(x =>
            {
                ArticleCatalogInfo info = new ArticleCatalogInfo();
                DESwap.ArticleCatalogETD(x, info);
                ilist.Add(info);
            });
            #endregion

            return ilist;;
        }
 public virtual ArticleCatalogInfo Load(string key)
 {
     ArticleCatalogInfo info = new ArticleCatalogInfo();
     using (var DbContext = new CmsDbContext())
     {
     ArticleCatalog entity = ArticleCatalogRpt.Get(DbContext, key);
     DESwap.ArticleCatalogETD(entity,info);
     }
     return info;
 }
Esempio n. 8
0
        public static void ArticleCatalogETD(ArticleCatalog entity, ArticleCatalogInfo info)
        {
            info.Id = entity.Id;
               info._IdIsDirty = 0;

               info.Name = entity.Name;
               info._NameIsDirty = 0;

               info.IsColumn = entity.IsColumn;
               info._IsColumnIsDirty = 0;

               info.Code = entity.Code;
               info._CodeIsDirty = 0;

               info.Image = entity.Image;
               info._ImageIsDirty = 0;

               info.ParentId = entity.ParentId;
               info._ParentIdIsDirty = 0;

               info.TreeNode = entity.TreeNode;
               info._TreeNodeIsDirty = 0;

               info.LinkUrl = entity.LinkUrl;
               info._LinkUrlIsDirty = 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;
        }