public ActionResult Sort(FormCollection collection) { Business.Platform.RoleApp broleApp = new Business.Platform.RoleApp(); List <Data.Model.RoleApp> roleAppList = new List <Data.Model.RoleApp>(); string id = Request.QueryString["id"]; var roleApp = broleApp.Get(id.ToGuid()); roleAppList = broleApp.GetChild(roleApp.ParentID); if (collection != null) { string srots = Request.Form["sortapp"]; if (srots.IsNullOrEmpty()) { return(View(roleAppList)); } string[] sortArray = srots.Split(new char[] { ',' }); for (int i = 0; i < sortArray.Length; i++) { Guid guid; if (!sortArray[i].IsGuid(out guid)) { continue; } broleApp.UpdateSort(guid, i + 1); } broleApp.ClearAllDataTableCache(); string rid = roleApp.ParentID.ToString(); ViewBag.Script = "parent.frames[0].reLoad('" + rid + "');"; roleAppList = broleApp.GetChild(roleApp.ParentID); } return(View(roleAppList)); }
public ActionResult Body() { Business.Platform.AppLibrary bappLibrary = new Business.Platform.AppLibrary(); Business.Platform.RoleApp broleApp = new Business.Platform.RoleApp(); Data.Model.RoleApp roleApp = null; string id = Request.QueryString["id"]; string name = string.Empty; string type = string.Empty; string appid = string.Empty; string params1 = string.Empty; string ico = string.Empty; Guid appID; if (id.IsGuid(out appID)) { roleApp = broleApp.Get(appID); if (roleApp != null) { name = roleApp.Title; type = roleApp.AppID.HasValue ? bappLibrary.GetTypeByID(roleApp.AppID.Value) : ""; appid = roleApp.AppID.ToString(); params1 = roleApp.Params; ico = roleApp.Ico; } } if (roleApp == null) { roleApp = new Data.Model.RoleApp(); } ViewBag.AppID = appid; ViewBag.AppTypesOptions = bappLibrary.GetTypeOptions(type); return(View(roleApp)); }
public ActionResult AddApp(FormCollection collection) { Business.Platform.AppLibrary bappLibrary = new Business.Platform.AppLibrary(); Business.Platform.RoleApp broleApp = new Business.Platform.RoleApp(); Data.Model.RoleApp roleApp = null; string id = Request.QueryString["id"]; if (collection != null) { roleApp = broleApp.Get(id.ToGuid()); if (!Request.Form["Save"].IsNullOrEmpty()) { string name = Request.Form["Name"]; string type = Request.Form["Type"]; string appid = Request.Form["AppID"]; string params1 = Request.Form["Params"]; string ico = Request.Form["Ico"]; Data.Model.RoleApp roleApp1 = new Data.Model.RoleApp(); roleApp1.ID = Guid.NewGuid(); roleApp1.ParentID = id.ToGuid(); roleApp1.RoleID = roleApp.RoleID; roleApp1.Title = name.Trim(); roleApp1.ParentID = roleApp.ID; roleApp1.Sort = broleApp.GetMaxSort(roleApp.ID); roleApp1.Type = 0; if (appid.IsGuid()) { roleApp1.AppID = appid.ToGuid(); } else { roleApp1.AppID = null; } roleApp1.Params = params1.IsNullOrEmpty() ? null : params1.Trim(); if (!ico.IsNullOrEmpty()) { roleApp1.Ico = ico; } broleApp.Add(roleApp1); broleApp.ClearAllDataTableCache(); Business.Platform.Log.Add("添加了应用模板", roleApp1.Serialize(), Business.Platform.Log.Types.角色应用); string refreshID = id; ViewBag.Script = "alert('添加成功');parent.frames[0].reLoad('" + refreshID + "');"; } } ViewBag.AppTypesOptions = bappLibrary.GetTypeOptions(); return(View()); }
public ActionResult Body(FormCollection collection) { Business.Platform.AppLibrary bappLibrary = new Business.Platform.AppLibrary(); Business.Platform.RoleApp broleApp = new Business.Platform.RoleApp(); Data.Model.RoleApp roleApp = null; string id = Request.QueryString["id"]; string name = string.Empty; string type = string.Empty; string appid = string.Empty; string params1 = string.Empty; string ico = string.Empty; Guid appID; if (id.IsGuid(out appID)) { roleApp = broleApp.Get(appID); } if (!Request.Form["Save"].IsNullOrEmpty()) { name = Request.Form["Name"]; type = Request.Form["Type"]; appid = Request.Form["AppID"]; params1 = Request.Form["Params"]; ico = Request.Form["Ico"]; string oldXML = roleApp.Serialize(); roleApp.Title = name.Trim(); if (appid.IsGuid()) { roleApp.AppID = appid.ToGuid(); } else { roleApp.AppID = null; } roleApp.Params = params1.IsNullOrEmpty() ? null : params1.Trim(); if (!ico.IsNullOrEmpty()) { roleApp.Ico = ico; } else { roleApp.Ico = null; } broleApp.Update(roleApp); broleApp.ClearAllDataTableCache(); Business.Platform.Log.Add("修改了应用模板", "", Business.Platform.Log.Types.角色应用, oldXML, roleApp.Serialize()); string refreshID = roleApp.ParentID == Guid.Empty ? roleApp.ID.ToString() : roleApp.ParentID.ToString(); ViewBag.Script = "parent.frames[0].reLoad('" + refreshID + "');alert('保存成功!');"; } if (!Request.Form["Delete"].IsNullOrEmpty()) { int i = broleApp.DeleteAndAllChilds(roleApp.ID); broleApp.ClearAllDataTableCache(); Business.Platform.Log.Add("删除了模板及其所有下级共" + i.ToString() + "项", roleApp.Serialize(), Business.Platform.Log.Types.角色应用); string refreshID = roleApp.ParentID == Guid.Empty ? roleApp.ID.ToString() : roleApp.ParentID.ToString(); ViewBag.Script = "parent.frames[0].reLoad('" + refreshID + "');window.location='Body?id=" + refreshID + "&appid=" + Request.QueryString["appid"] + "&tabid=" + Request.QueryString["tabid"] + "';"; } if (roleApp != null && roleApp.AppID.HasValue) { var app = new Business.Platform.AppLibrary().Get(roleApp.AppID.Value); if (app != null) { type = app.Type.ToString(); } } ViewBag.AppTypesOptions = bappLibrary.GetTypeOptions(type); ViewBag.AppID = roleApp.AppID.ToString(); return(View(roleApp)); }