| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebForm.Platform.AppLibrary
- {
- public partial class Edit : Common.BasePage
- {
- RoadFlow.Platform.AppLibrary bappLibrary = new RoadFlow.Platform.AppLibrary();
- RoadFlow.Data.Model.AppLibrary appLibrary = null;
- protected void Page_Load(object sender, EventArgs e)
- {
- string editID = Request.QueryString["id"];
- string type = Request.QueryString["typeid"];
- if (editID.IsGuid())
- {
- appLibrary = bappLibrary.Get(editID.ToGuid());
- }
- if (!IsPostBack)
- {
- if (appLibrary != null)
- {
- this.Title1.Value = appLibrary.Title;
- this.Address.Value = appLibrary.Address;
- this.TypeOptions.Text = new RoadFlow.Platform.AppLibrary().GetTypeOptions(appLibrary.Type.ToString());
- this.OpenModelOptions.Text = new RoadFlow.Platform.Dictionary().GetOptionsByCode("appopenmodel", value: appLibrary.OpenMode.ToString());
- this.Params.Value = appLibrary.Params;
- this.Width.Value = appLibrary.Width.ToString();
- this.Height.Value = appLibrary.Height.ToString();
- this.UseMember.Value = appLibrary.UseMember;
- this.Note.Value = appLibrary.Note;
- }
- else
- {
- this.TypeOptions.Text = new RoadFlow.Platform.AppLibrary().GetTypeOptions("");
- this.OpenModelOptions.Text = new RoadFlow.Platform.Dictionary().GetOptionsByCode("appopenmodel");
- }
- }
- }
- protected void Button1_Click(object sender, EventArgs e)
- {
- string title = Request.Form["title1"];
- string address = Request.Form["address"];
- string openModel = Request.Form["openModel"];
- string width = Request.Form["width"];
- string height = Request.Form["height"];
- string params1 = Request.Form["Params"];
- string note = Request.Form["note"];
- string useMember = Request.Form["UseMember"];
- string type = Request.Form["type"];
- bool isAdd = false;
- string oldXML = string.Empty;
- if (appLibrary == null)
- {
- isAdd = true;
- appLibrary = new RoadFlow.Data.Model.AppLibrary();
- appLibrary.ID = Guid.NewGuid();
- }
- else
- {
- oldXML = appLibrary.Serialize();
- }
- appLibrary.Address = address.Trim();
- appLibrary.Height = height.ToIntOrNull();
- appLibrary.Note = note;
- appLibrary.OpenMode = openModel.ToInt();
- appLibrary.Params = params1;
- appLibrary.Title = title;
- appLibrary.Type = type.ToGuid();
- appLibrary.Width = width.ToIntOrNull();
- if (!useMember.IsNullOrEmpty())
- {
- appLibrary.UseMember = useMember;
- }
- else
- {
- appLibrary.UseMember = null;
- }
- if (isAdd)
- {
- bappLibrary.Add(appLibrary);
- RoadFlow.Platform.Log.Add("添加了应用程序库", appLibrary.Serialize(), RoadFlow.Platform.Log.Types.角色应用);
- Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "alert('添加成功!');new RoadUI.Window().reloadOpener();new RoadUI.Window().close();", true);
- }
- else
- {
- bappLibrary.Update(appLibrary);
- RoadFlow.Platform.Log.Add("修改了应用程序库", "", RoadFlow.Platform.Log.Types.角色应用, oldXML, appLibrary.Serialize());
- Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "alert('修改成功!');new RoadUI.Window().reloadOpener();new RoadUI.Window().close();", true);
- }
- bappLibrary.UpdateUseMemberCache(appLibrary.ID);
- bappLibrary.ClearCache();
- new RoadFlow.Platform.RoleApp().ClearAllDataTableCache();
- }
- }
- }
|