| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- namespace WebForm.Platform.Members
- {
- public partial class UserAdd : Common.BasePage
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- this.Account.Attributes.Add("validate_url", "CheckAccount.ashx");
- RoadFlow.Platform.Organize borganize = new RoadFlow.Platform.Organize();
- RoadFlow.Platform.Users busers = new RoadFlow.Platform.Users();
- string id = Request.QueryString["id"];
- string name = string.Empty;
- string account = string.Empty;
- string status = string.Empty;
- string note = string.Empty;
- Guid parentID;
- if (IsPostBack && id.IsGuid(out parentID))
- {
- name = Request.Form["Name"];
- account = Request.Form["Account"];
- status = Request.Form["Status"];
- note = Request.Form["Note"];
- Guid userID = Guid.NewGuid();
- string userXML = string.Empty;
- using (System.Transactions.TransactionScope scope = new System.Transactions.TransactionScope())
- {
- //添加人员
- RoadFlow.Data.Model.Users user = new RoadFlow.Data.Model.Users();
- user.Account = account.Trim();
- user.Name = name.Trim();
- user.Note = note.IsNullOrEmpty() ? null : note;
- user.Password = busers.GetUserEncryptionPassword(userID.ToString(), busers.GetInitPassword());
- user.Sort = 1;
- user.Status = status.IsInt() ? status.ToInt() : 0;
- user.ID = userID;
- busers.Add(user);
- //添加关系
- RoadFlow.Data.Model.UsersRelation userRelation = new RoadFlow.Data.Model.UsersRelation();
- userRelation.IsMain = 1;
- userRelation.OrganizeID = parentID;
- userRelation.Sort = new RoadFlow.Platform.UsersRelation().GetMaxSort(parentID);
- userRelation.UserID = userID;
- new RoadFlow.Platform.UsersRelation().Add(userRelation);
- //更新父级[ChildsLength]字段
- borganize.UpdateChildsLength(parentID);
- //更新角色
- new RoadFlow.Platform.UsersRole().UpdateByUserID(userID);
- userXML = user.Serialize();
- scope.Complete();
- }
- RoadFlow.Platform.Log.Add("添加了人员", userXML, RoadFlow.Platform.Log.Types.组织机构);
- Page.ClientScript.RegisterStartupScript(Page.GetType(), "ok", "alert('添加成功!');parent.frames[0].reLoad('" + id + "');window.location=window.location;", true);
- }
- this.StatusRadios.Text = borganize.GetStatusRadio("Status", "0", "validate=\"radio\"");
- }
- }
- }
|