using BLL; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace FineUIPro.Web.TestRun.Meeting { public partial class MeetingSummaryEdit : PageBase { #region 加载 /// /// 页面加载 /// /// /// protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string id = Request.Params["id"]; if (!string.IsNullOrEmpty(id)) { Model.Driver_MeetingMinutes data = BLL.MeetingMinutesService.GetMinutesById(id); if (data != null) { this.hdId.Text = id; this.txtMinutesCode.Text = data.MinutesCode; if (data.MeetingType == "1") { this.rblMeetingType.SelectedValue = "1"; } else if (data.MeetingType == "2") { this.rblMeetingType.SelectedValue = "2"; } else if (data.MeetingType == "3") { this.rblMeetingType.SelectedValue = "3"; } WindowAtt_Close(null, null); WindowAtt2_Close(null, null); } } else { string perfix = BLL.ProjectService.GetProjectCodeByProjectId(this.CurrUser.LoginProjectId) + "-MM-PSM-"; this.txtMinutesCode.Text = BLL.SQLHelper.RunProcNewId("SpGetThreeNumber", "dbo.Driver_MeetingMinutes", "MinutesCode", this.CurrUser.LoginProjectId, perfix); } ///初始化审核菜单 this.ctlAuditFlow.MenuId = BLL.Const.WeekMeetingMenuId; this.ctlAuditFlow.DataId = id; this.ctlAuditFlow.ProjectId = this.CurrUser.LoginProjectId; this.ctlAuditFlow.UnitId = this.CurrUser.UnitId; //InitMenuTree(); } } #endregion #region 附件上传 /// /// 会议纪要 /// /// /// protected void btnAttach_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录 { this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_MeetingMinutes)); } PageContext.RegisterStartupScript(WindowAtt.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/MeetingMinutes&menuId={1}&strParam=1", this.hdId.Text, BLL.Const.WeekMeetingMenuId))); } /// /// 签到表 /// /// /// protected void btnSign_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.hdId.Text)) //新增记录 { this.hdId.Text = SQLHelper.GetNewID(typeof(Model.Driver_MeetingMinutes)); } PageContext.RegisterStartupScript(WindowAtt2.GetShowReference(String.Format("../../AttachFile/webuploader.aspx?type=0&toKeyId={0}&path=FileUpload/TestRun/Meeting/MeetingMinutes&menuId={1}&strParam=2", this.hdId.Text, BLL.Const.WeekMeetingMenuId))); } protected void WindowAtt_Close(object sender, WindowCloseEventArgs e) { string url = string.Empty; this.lblMinutesAttach.Text = string.Empty; var attLists = BLL.AttachFileService.Getfiles(this.hdId.Text + "#1", BLL.Const.WeekMeetingMenuId); if (attLists != null) { List lists = Funs.GetStrListByStr(attLists.AttachUrl, ','); if (lists.Count > 0) { foreach (var item in lists) { url += item.Substring(item.IndexOf('_') + 1) + "\r\n"; } } if (!string.IsNullOrEmpty(url)) { this.lblMinutesAttach.Text = url; } } } protected void WindowAtt2_Close(object sender, WindowCloseEventArgs e) { string url = string.Empty; this.lblSignAttach.Text = string.Empty; var attLists = BLL.AttachFileService.Getfiles(this.hdId.Text + "#2", BLL.Const.WeekMeetingMenuId); if (attLists != null) { List lists = Funs.GetStrListByStr(attLists.AttachUrl, ','); if (lists.Count > 0) { foreach (var item in lists) { url += item.Substring(item.IndexOf('_') + 1) + "\r\n"; } } if (!string.IsNullOrEmpty(url)) { this.lblSignAttach.Text = url; } } } #endregion #region 保存 /// /// 保存按钮 /// /// /// protected void btnSave_Click(object sender, EventArgs e) { SaveData(BLL.Const.BtnSave); ShowNotify("保存成功!", MessageBoxIcon.Success); PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); } /// /// 提交按钮 /// /// /// protected void btnSubmit_Click(object sender, EventArgs e) { if (this.ctlAuditFlow.NextStep == BLL.Const.State_1 && this.ctlAuditFlow.NextPerson == BLL.Const._Null) { ShowNotify("请选择下一步办理人!", MessageBoxIcon.Warning); return; } SaveData(BLL.Const.BtnSubmit); ShowNotify("提交成功!", MessageBoxIcon.Success); PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference()); } /// /// 保存数据 /// /// private void SaveData(string type) { string id = Request.Params["id"]; Model.Driver_MeetingMinutes newData = new Model.Driver_MeetingMinutes(); newData.MinutesCode = this.txtMinutesCode.Text.Trim(); newData.MeetingType = this.rblMeetingType.SelectedValue; newData.CompileMan = this.CurrUser.UserId; newData.CompileDate = DateTime.Now; newData.ProjectId = this.CurrUser.LoginProjectId; //单据状态 newData.Statues = BLL.Const.State_0; if (type == BLL.Const.BtnSubmit) { newData.Statues = this.ctlAuditFlow.NextStep; } if (!string.IsNullOrEmpty(id)) { newData.MeetingMinutesId = id; BLL.MeetingMinutesService.UpdateMeetingMinutes(newData); } else { if (!string.IsNullOrEmpty(this.hdId.Text)) { newData.MeetingMinutesId = this.hdId.Text.Trim(); } else { newData.MeetingMinutesId = SQLHelper.GetNewID(typeof(Model.Driver_MeetingMinutes)); this.hdId.Text = newData.MeetingMinutesId; } BLL.MeetingMinutesService.AddMeetingMinutes(newData); } #region 保存参会人员 //BLL.MeetingItemService.DeleteMeetingItemByMeetingId(this.hdId.Text); //TreeNode[] nodes = this.tvAttendMeetingsPerson.GetCheckedNodes(); //if (nodes.Length > 0) //{ // foreach (TreeNode tn in nodes) // { // if (tn.NodeID != "0") // { // Model.Driver_MeetingItem newItem = new Model.Driver_MeetingItem // { // MeetingItemId = SQLHelper.GetNewID(typeof(Model.Driver_MeetingItem)), // MeetingId = this.hdId.Text, // UserId = tn.NodeID, // }; // BLL.MeetingItemService.AddMeetingItem(newItem); // } // } //} #endregion //保存流程审核数据 this.ctlAuditFlow.btnSaveData(this.CurrUser.LoginProjectId, BLL.Const.WeekMeetingMenuId, this.hdId.Text, (type == BLL.Const.BtnSubmit ? true : false), newData.MinutesCode, null); } #endregion #region 初始化树 /// /// 初始化树 /// /// 单位集合 //private void InitMenuTree() //{ // this.tvAttendMeetingsPerson.Nodes.Clear(); // var units = BLL.UnitService.GetUnitByProjectIdList(this.CurrUser.LoginProjectId); // foreach (var item in units) // { // TreeNode rootNode = new TreeNode // { // Text = item.UnitName, // NodeID = item.UnitId, // EnableCheckBox = true, // EnableCheckEvent = true, // Expanded = true // }; // this.tvAttendMeetingsPerson.Nodes.Add(rootNode); // this.BoundTree(rootNode.Nodes, rootNode.NodeID); // } //} /// /// 遍历增加子节点 /// /// /// //private void BoundTree(TreeNodeCollection nodes, string superMenuId) //{ // var menus = BLL.UserService.GetUserByUnitId(this.CurrUser.LoginProjectId, superMenuId); // foreach (var item in menus) // { // TreeNode chidNode = new TreeNode // { // Text = item.Text, // NodeID = item.Value, // EnableCheckBox = true, // EnableCheckEvent = true // }; // var items = BLL.MeetingItemService.GetMeetingItemByMeetingId(this.hdId.Text.Trim()); // if (items.Count > 0) // { // foreach (var i in items) // { // if (i.UserId == item.Value) // { // chidNode.Checked = true; // chidNode.Expanded = true; // chidNode.Selectable = true; // //var meeting = BLL.MeetingService.GetMeetingById(this.hdId.Text.Trim()); // //if (meeting != null) // //{ // // if (meeting.States == "2") // // { // // if (i.IsMeeting == true) // // { // // chidNode.Text = item.Text + "(可按时参加)"; // // } // // else if (i.IsMeeting == false) // // { // // chidNode.Text = item.Text + "(因故不参加:" + i.Feedback + ")"; // // } // // else // // { // // chidNode.Text = item.Text + "(暂未反馈)"; // // } // // } // //} // } // } // } // nodes.Add(chidNode); // } //} #endregion #region 全选、全不选 /// /// 全选、全不选 /// /// /// //protected void tvAttendMeetingsPerson_NodeCheck(object sender, FineUIPro.TreeCheckEventArgs e) //{ // if (e.Checked) // { // this.tvAttendMeetingsPerson.CheckAllNodes(e.Node.Nodes); // SetCheckParentNode(e.Node); // } // else // { // this.tvAttendMeetingsPerson.UncheckAllNodes(e.Node.Nodes); // } //} /// /// 选中父节点 /// /// //private void SetCheckParentNode(TreeNode node) //{ // if (node.ParentNode != null && node.ParentNode.NodeID != "0") // { // node.ParentNode.Checked = true; // if (node.ParentNode.ParentNode.NodeID != "0") // { // SetCheckParentNode(node.ParentNode); // } // } //} #endregion } }