| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebForm.Platform.WorkFlowComments
- {
- public partial class Edit : Common.BasePage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- RoadFlow.Platform.WorkFlowComment bworkFlowComment = new RoadFlow.Platform.WorkFlowComment();
- RoadFlow.Data.Model.WorkFlowComment workFlowComment = null;
- string id = Request.QueryString["id"];
- string member = string.Empty;
- string comment = string.Empty;
- string sort = string.Empty;
- bool isOneSelf = "1" == Request.QueryString["isoneself"];
- if (isOneSelf)
- {
- this.usermemberid.Visible = false;
- }
- Guid commentID;
- if (id.IsGuid(out commentID))
- {
- workFlowComment = bworkFlowComment.Get(commentID);
- member = workFlowComment.MemberID;
- comment = workFlowComment.Comment;
- sort = workFlowComment.Sort.ToString();
- }
- string oldXML = workFlowComment.Serialize();
- if (IsPostBack)
- {
- member = isOneSelf ? RoadFlow.Platform.Users.PREFIX + RoadFlow.Platform.Users.CurrentUserID.ToString() : Request.Form["Member"];
- comment = Request.Form["Comment"];
- sort = Request.Form["Sort"];
- bool isAdd = !id.IsGuid();
- if (workFlowComment == null)
- {
- workFlowComment = new RoadFlow.Data.Model.WorkFlowComment();
- workFlowComment.ID = Guid.NewGuid();
- workFlowComment.Type = isOneSelf ? 1 : 0;
- }
- workFlowComment.MemberID = member.IsNullOrEmpty() ? "" : member.Trim();
- workFlowComment.Comment = comment.IsNullOrEmpty() ? "" : comment.Trim();
- workFlowComment.Sort = sort.IsInt() ? sort.ToInt() : bworkFlowComment.GetManagerMaxSort();
- if (isAdd)
- {
- bworkFlowComment.Add(workFlowComment);
- RoadFlow.Platform.Log.Add("添加了流程意见", workFlowComment.Serialize(), RoadFlow.Platform.Log.Types.流程相关);
- }
- else
- {
- bworkFlowComment.Update(workFlowComment);
- RoadFlow.Platform.Log.Add("修改了流程意见", "", RoadFlow.Platform.Log.Types.流程相关, oldXML, workFlowComment.Serialize());
- }
- bworkFlowComment.RefreshCache();
- Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "new RoadUI.Window().reloadOpener();alert('保存成功!'); new RoadUI.Window().close();", true);
- }
- if (workFlowComment != null)
- {
- this.Comment.Value = workFlowComment.Comment;
- this.Member.Value = workFlowComment.MemberID;
- this.Sort.Value = workFlowComment.Sort.ToString();
- }
- }
- }
- }
|