351 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			351 lines
		
	
	
		
			13 KiB
		
	
	
	
		
			C#
		
	
	
	
namespace FineUIPro.Web.SysManage
 | 
						|
{
 | 
						|
    using System;
 | 
						|
    using System.Collections.Generic;
 | 
						|
    using System.Data;
 | 
						|
    using System.Data.SqlClient;
 | 
						|
    using System.Linq;
 | 
						|
    using BLL;
 | 
						|
 | 
						|
    public partial class UserList : PageBase
 | 
						|
    { 
 | 
						|
        /// <summary>
 | 
						|
        /// 加载页面
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void Page_Load(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            if (!IsPostBack)
 | 
						|
            {
 | 
						|
                Funs.DropDownPageSize(this.ddlPageSize);
 | 
						|
                UnitService.InitUnitDropDownList(this.drpUnit, this.CurrUser.LoginProjectId, true);
 | 
						|
                DepartService.InitDepartDropDownList(this.drpDepart, true);
 | 
						|
                BLL.RoleService.InitRoleDropDownList(this.drpRole, string.Empty, true, true);
 | 
						|
                ////权限按钮方法
 | 
						|
                this.GetButtonPower();
 | 
						|
                this.btnNew.OnClientClick = Window1.GetShowReference("UserListEdit.aspx?type=0") + "return false;";
 | 
						|
                if (this.CurrUser != null && this.CurrUser.PageSize.HasValue)
 | 
						|
                {
 | 
						|
                    Grid1.PageSize = this.CurrUser.PageSize.Value;
 | 
						|
                }
 | 
						|
                this.ddlPageSize.SelectedValue = Grid1.PageSize.ToString();
 | 
						|
                // 绑定表格
 | 
						|
                this.BindGrid();
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 绑定数据
 | 
						|
        /// </summary>
 | 
						|
        private void BindGrid()
 | 
						|
        {
 | 
						|
            string strSql = @"SELECT Users.UserId,Users.Account,Users.UserCode,Users.Password,Users.UserName,Depart.DepartName,Users.RoleId,Users.UnitId,Users.IsPost,CASE WHEN  Users.IsPost=1 THEN '是' ELSE '否' END AS IsPostName,Users.IdentityCard,Users.Telephone,Users.IsOffice,"
 | 
						|
                          + @"Roles.RoleName,Unit.UnitName,Unit.UnitCode"
 | 
						|
                          + @" From dbo.Sys_User AS Users"
 | 
						|
                          + @" LEFT JOIN Sys_Role AS Roles ON Roles.RoleId=Users.RoleId"
 | 
						|
                          + @" LEFT JOIN Base_Unit AS Unit ON Unit.UnitId=Users.UnitId"
 | 
						|
                          + @" LEFT JOIN Base_Depart AS Depart ON Depart.DepartId=Users.DepartId"
 | 
						|
                          + @" WHERE Users.UserId !='" + Const.sysglyId + "' AND Users.UserId !='" + Const.hfnbdId + "' AND  Users.UserId !='" + Const.sedinId + "'";
 | 
						|
            List<SqlParameter> listStr = new List<SqlParameter>();
 | 
						|
            //strSql += " AND Users.UnitId = @ThisUnitId";
 | 
						|
            //listStr.Add(new SqlParameter("@ThisUnitId", Const.UnitId_CWCEC));
 | 
						|
 | 
						|
            if (!string.IsNullOrEmpty(this.txtUserName.Text.Trim()))
 | 
						|
            {
 | 
						|
                strSql += " AND Users.UserName LIKE @UserName";
 | 
						|
                listStr.Add(new SqlParameter("@UserName", "%" + this.txtUserName.Text.Trim() + "%"));
 | 
						|
            }
 | 
						|
            if (!BLL.CommonService.IsMainUnitOrAdmin(this.CurrUser.UserId)) ///不是企业单位或者管理员
 | 
						|
            {
 | 
						|
                strSql += " AND Users.UnitId = @UnitId";
 | 
						|
                listStr.Add(new SqlParameter("@UnitId", this.CurrUser.UnitId));
 | 
						|
            }
 | 
						|
            if (this.drpDepart.SelectedValue != BLL.Const._Null)
 | 
						|
            {
 | 
						|
                strSql += " AND Users.DepartId = @DepartId";
 | 
						|
                listStr.Add(new SqlParameter("@DepartId", this.drpDepart.SelectedValue));
 | 
						|
            }
 | 
						|
            if (this.drpUnit.SelectedValue != BLL.Const._Null)
 | 
						|
            {
 | 
						|
                strSql += " AND Users.UnitId = @UnitId2";
 | 
						|
                listStr.Add(new SqlParameter("@UnitId2", this.drpUnit.SelectedValue));
 | 
						|
            }
 | 
						|
            if (this.drpRole.SelectedValue != BLL.Const._Null)
 | 
						|
            {
 | 
						|
                strSql += " AND Users.RoleId = @RoleId";
 | 
						|
                listStr.Add(new SqlParameter("@RoleId", this.drpRole.SelectedValue));
 | 
						|
            }
 | 
						|
 | 
						|
            SqlParameter[] parameter = listStr.ToArray();
 | 
						|
            DataTable tb = SQLHelper.GetDataTableRunText(strSql, parameter);
 | 
						|
 | 
						|
            Grid1.RecordCount = tb.Rows.Count;
 | 
						|
            //tb = GetFilteredTable(Grid1.FilteredData, tb);
 | 
						|
            var table = this.GetPagedDataTable(Grid1, tb);
 | 
						|
            Grid1.DataSource = table;
 | 
						|
            Grid1.DataBind();
 | 
						|
        }
 | 
						|
 | 
						|
        #region 查询
 | 
						|
        /// <summary>
 | 
						|
        /// 查询
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void TextBox_TextChanged(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            this.BindGrid();
 | 
						|
        }
 | 
						|
        #endregion 
 | 
						|
 | 
						|
        #region 获取按钮权限
 | 
						|
        /// <summary>
 | 
						|
        /// 获取按钮权限
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="button"></param>
 | 
						|
        /// <returns></returns>
 | 
						|
        private void GetButtonPower()
 | 
						|
        {
 | 
						|
            var buttonList = BLL.CommonService.GetAllButtonList(this.CurrUser.LoginProjectId, this.CurrUser.UserId, BLL.Const.UserMenuId);
 | 
						|
            if (buttonList.Count() > 0)
 | 
						|
            {
 | 
						|
                if (buttonList.Contains(BLL.Const.BtnAdd))
 | 
						|
                {
 | 
						|
                    this.btnNew.Hidden = false;
 | 
						|
                    this.btnImport.Hidden = false;
 | 
						|
                }
 | 
						|
                if (buttonList.Contains(BLL.Const.BtnModify))
 | 
						|
                {
 | 
						|
                    this.btnMenuEdit.Hidden = false;
 | 
						|
                }
 | 
						|
                if (buttonList.Contains(BLL.Const.BtnDelete))
 | 
						|
                {
 | 
						|
                    this.btnMenuDelete.Hidden = false;
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region  删除数据
 | 
						|
        /// <summary>
 | 
						|
        /// 右键删除事件
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void btnMenuDelete_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            this.DeleteData();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 删除方法
 | 
						|
        /// </summary>
 | 
						|
        private void DeleteData()
 | 
						|
        {
 | 
						|
            if (Grid1.SelectedRowIndexArray.Length > 0)
 | 
						|
            {
 | 
						|
                string strShowNotify = string.Empty;
 | 
						|
                foreach (int rowIndex in Grid1.SelectedRowIndexArray)
 | 
						|
                {
 | 
						|
                    string rowID = Grid1.DataKeys[rowIndex][0].ToString();
 | 
						|
                    var user = BLL.UserService.GetUserByUserId(rowID);
 | 
						|
                    if (user != null)
 | 
						|
                    {
 | 
						|
                        string cont = judgementDelete(rowID);
 | 
						|
                        if (string.IsNullOrEmpty(cont))
 | 
						|
                        {
 | 
						|
                            BLL.LogService.AddSys_Log(this.CurrUser, user.UserCode, user.UserId, BLL.Const.UserMenuId, BLL.Const.BtnDelete);
 | 
						|
                            BLL.UserService.DeleteUser(rowID);
 | 
						|
                        }
 | 
						|
                        else
 | 
						|
                        {
 | 
						|
                            strShowNotify += "用户:" + user.UserName + cont;
 | 
						|
                        }
 | 
						|
                    }
 | 
						|
                }
 | 
						|
 | 
						|
                BindGrid();
 | 
						|
                if (!string.IsNullOrEmpty(strShowNotify))
 | 
						|
                {
 | 
						|
                    Alert.ShowInTop(strShowNotify, MessageBoxIcon.Warning);
 | 
						|
                }
 | 
						|
                else
 | 
						|
                {
 | 
						|
                    ShowNotify("删除数据成功!", MessageBoxIcon.Success);
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        #region 分页
 | 
						|
        /// <summary>
 | 
						|
        /// 分页
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void Grid1_PageIndexChange(object sender, GridPageEventArgs e)
 | 
						|
        {
 | 
						|
            BindGrid();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 分页显示条数下拉框
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
 | 
						|
            BindGrid();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 排序
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void Grid1_Sort(object sender, FineUIPro.GridSortEventArgs e)
 | 
						|
        {
 | 
						|
            BindGrid();
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Grid行双击事件
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void Grid1_RowDoubleClick(object sender, GridRowClickEventArgs e)
 | 
						|
        {
 | 
						|
            this.EditData();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 右键编辑事件
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void btnMenuEdit_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            this.EditData();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 编辑数据方法
 | 
						|
        /// </summary>
 | 
						|
        private void EditData()
 | 
						|
        {
 | 
						|
            if (Grid1.SelectedRowIndexArray.Length == 0)
 | 
						|
            {
 | 
						|
                Alert.ShowInParent("请至少选择一条记录!", MessageBoxIcon.Warning);
 | 
						|
                return;
 | 
						|
            }
 | 
						|
            string Id = Grid1.SelectedRowID;
 | 
						|
            PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("UserListEdit.aspx?userId={0}&type=0", Id, "编辑 - ")));
 | 
						|
        }
 | 
						|
 | 
						|
        #region 判断是否可删除
 | 
						|
        /// <summary>
 | 
						|
        /// 判断是否可以删除
 | 
						|
        /// </summary>
 | 
						|
        /// <returns></returns>
 | 
						|
        private string judgementDelete(string id)
 | 
						|
        {
 | 
						|
            string content = string.Empty;
 | 
						|
            if (Funs.DB.Project_ProjectUser.FirstOrDefault(x => x.UserId == id) != null)
 | 
						|
            {
 | 
						|
                content += "已在【项目用户】中使用,不能删除!";
 | 
						|
            }
 | 
						|
            if (Funs.DB.Law_LawRegulationList.FirstOrDefault(x => x.CompileMan == id) != null)
 | 
						|
            {
 | 
						|
                content += "已在【法律法规】中使用,不能删除!";
 | 
						|
            }
 | 
						|
            if (Funs.DB.Law_HSSEStandardsList.FirstOrDefault(x => x.CompileMan == id) != null)
 | 
						|
            {
 | 
						|
                content += "已在【标准规范】中使用,不能删除!";
 | 
						|
            }
 | 
						|
            if (Funs.DB.ProjectData_FlowOperate.FirstOrDefault(x => x.OperaterId == id) != null)
 | 
						|
            {
 | 
						|
                content += "已在【报表审核】中使用,不能删除!";
 | 
						|
            }
 | 
						|
            return content;
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 参与项目情况
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void lbtnPro_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            PageContext.RegisterStartupScript(Window1.GetShowReference(String.Format("ParticipateProject.aspx?userId={0}", Grid1.SelectedRowID, "参与项目情况 - "), "参与项目", 1000, 520));
 | 
						|
        }
 | 
						|
 | 
						|
        protected string ConvertProject(object userId)
 | 
						|
        {
 | 
						|
            string projectName = string.Empty;
 | 
						|
            if (userId != null)
 | 
						|
            {
 | 
						|
                var projectUsers = ProjectUserService.GetProjectUserByUserId(userId.ToString());
 | 
						|
 | 
						|
                if (projectUsers.Count() == 1)
 | 
						|
                {
 | 
						|
                    projectName = BLL.ProjectService.GetProjectByProjectId(projectUsers.FirstOrDefault().ProjectId).ProjectName;
 | 
						|
                }
 | 
						|
                else if (projectUsers.Count() > 1)
 | 
						|
                {
 | 
						|
                    projectName = "查看";
 | 
						|
                }
 | 
						|
                else
 | 
						|
                {
 | 
						|
                    projectName = "无";
 | 
						|
                }
 | 
						|
            }
 | 
						|
            return projectName;
 | 
						|
        }
 | 
						|
 | 
						|
        #region 导入
 | 
						|
        /// <summary>
 | 
						|
        /// 导入按钮
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void btnImport_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            PageContext.RegisterStartupScript(Window2.GetShowReference(String.Format("UserIn.aspx", "导入 - ")));
 | 
						|
        }
 | 
						|
        #endregion
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 关闭导入弹出窗口
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void Window2_Close(object sender, WindowCloseEventArgs e)
 | 
						|
        {
 | 
						|
            BindGrid();
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// 推送督查人员
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="sender"></param>
 | 
						|
        /// <param name="e"></param>
 | 
						|
        protected void btnPush_Click(object sender, EventArgs e)
 | 
						|
        {
 | 
						|
            string code = CNCECHSSEWebService.PushInspectionBrigadeUser().ToString();
 | 
						|
            if (code == "1")
 | 
						|
            {
 | 
						|
                ShowNotify("同步成功!", MessageBoxIcon.Success);
 | 
						|
                PageContext.RegisterStartupScript(ActiveWindow.GetHidePostBackReference());
 | 
						|
                return;
 | 
						|
            }
 | 
						|
            else
 | 
						|
            {
 | 
						|
                Alert.ShowInParent("同步异常,请退出后重试!", MessageBoxIcon.Error);
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |