| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebForm.Platform.WorkFlowDelegation
- {
- public partial class Edit : Common.BasePage
- {
- protected bool isOneSelf = false;
- protected string FlowOptions = string.Empty;
- protected RoadFlow.Platform.WorkFlowDelegation bworkFlowDelegation = new RoadFlow.Platform.WorkFlowDelegation();
- protected RoadFlow.Data.Model.WorkFlowDelegation workFlowDelegation = null;
- protected void Page_Load(object sender, EventArgs e)
- {
- string id = Request.QueryString["id"];
- string UserID = string.Empty;
- string ToUserID = string.Empty;
- string StartTime = string.Empty;
- string EndTime = string.Empty;
- string FlowID = string.Empty;
- string Note = string.Empty;
- isOneSelf = "1" == Request.QueryString["isoneself"];
- Guid delegationID;
- if (id.IsGuid(out delegationID))
- {
- workFlowDelegation = bworkFlowDelegation.Get(delegationID);
- if (workFlowDelegation != null)
- {
- FlowID = workFlowDelegation.FlowID.ToString();
- }
- }
- string oldXML = workFlowDelegation.Serialize();
- if (IsPostBack)
- {
- UserID = Request.Form["UserID"];
- ToUserID = Request.Form["ToUserID"];
- StartTime = Request.Form["StartTime"];
- EndTime = Request.Form["EndTime"];
- FlowID = Request.Form["FlowID"];
- Note = Request.Form["Note"];
- bool isAdd = !id.IsGuid();
- if (workFlowDelegation == null)
- {
- workFlowDelegation = new RoadFlow.Data.Model.WorkFlowDelegation();
- workFlowDelegation.ID = Guid.NewGuid();
- }
- workFlowDelegation.UserID = isOneSelf ? RoadFlow.Platform.Users.CurrentUserID : RoadFlow.Platform.Users.RemovePrefix(UserID).ToGuid();
- workFlowDelegation.EndTime = EndTime.ToDateTime();
- if (FlowID.IsGuid())
- {
- workFlowDelegation.FlowID = FlowID.ToGuid();
- }
- workFlowDelegation.Note = Note.IsNullOrEmpty() ? null : Note;
- workFlowDelegation.StartTime = StartTime.ToDateTime();
- workFlowDelegation.ToUserID = RoadFlow.Platform.Users.RemovePrefix(ToUserID).ToGuid();
- workFlowDelegation.WriteTime = RoadFlow.Utility.DateTimeNew.Now;
- if (isAdd)
- {
- bworkFlowDelegation.Add(workFlowDelegation);
- RoadFlow.Platform.Log.Add("添加了工作委托", workFlowDelegation.Serialize(), RoadFlow.Platform.Log.Types.流程相关);
- }
- else
- {
- bworkFlowDelegation.Update(workFlowDelegation);
- RoadFlow.Platform.Log.Add("修改了工作委托", "", RoadFlow.Platform.Log.Types.流程相关, oldXML, workFlowDelegation.Serialize());
- }
- bworkFlowDelegation.RefreshCache();
- Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "alert('保存成功!');new RoadUI.Window().reloadOpener();new RoadUI.Window().close();", true);
- }
- FlowOptions = new RoadFlow.Platform.WorkFlow().GetOptions(FlowID);
- if (workFlowDelegation == null) workFlowDelegation = new RoadFlow.Data.Model.WorkFlowDelegation();
- }
- }
- }
|