// ======================= FUNCIONES OPERACIONES CUENTAS EJECUTIVO =========================== /// <summary> /// Muestra el detalle de los datos del usuario que selecciono /// </summary> /// <param name="sender">object sender</param> /// <param name="e">DirectEventArgs e</param> protected void Muestra_Dat_User(object sender, DirectEventArgs e) { CellSelectionModel UserSel = this.ListaUsuarios.SelectionModel.Primary as CellSelectionModel; Controles.Usuario_Com DatUser = new Controles.Usuario_Com(); // Consulta los datos del usuario consumiendo el metodo ConsultaDatUsuario DatUser = Acceso.ConsultaDatUsuario(Convert.ToInt32(UserSel.SelectedCell.RecordID)); // Guarda los datos del usuario en variables de sesion Session["UserSel"] = DatUser.Usuario_Sim.Id_Usuario; this.dpfUser.Text = Convert.ToString(Session["UserSel"]); Session["UserSuc"] = DatUser.Id_Sucursal; this.txtNombre1.Text = DatUser.Nombre_1; this.txtNombre2.Text = DatUser.Nombre_2; this.txtApellido1.Text = DatUser.Apellido_Pat; this.txtApellido2.Text = DatUser.Apellido_Mat; this.txtEmail.Text = DatUser.Correo; this.txtUser.Text = DatUser.Usuario_Sim.Usuario; this.cbEstatus.SetRawValue(DatUser.Usuario_Sim.Estado_User); this.cbCoop.SetRawValue(DatUser.Usuario_Sim.Coop); this.cbPlaza.SetRawValue(DatUser.Usuario_Sim.Plaza); this.cbSucursal.SetRawValue(DatUser.Usuario_Sim.Sucursal); if (DatUser.Activo == true) { this.chkUserActivo.Checked = true; } else { this.chkUserActivo.Checked = false; } EstadoBotones(3); }
// ======================= FUNCIONES OPERACIONES CUENTAS EJECUTIVO =========================== /// <summary> /// Muestra el detalle de los datos del usuario que selecciono /// </summary> /// <param name="sender">object sender</param> /// <param name="e">DirectEventArgs e</param> protected void Muestra_Dat_User(object sender, DirectEventArgs e) { find = Acceso.Revisa_Permisos(179); if (find == true) { CellSelectionModel UserSel = this.ListaUsuarios.SelectionModel.Primary as CellSelectionModel; Controles.Usuario_Com DatUser = new Controles.Usuario_Com(); // Consulta los datos del usuario consumiendo el metodo ConsultaDatUsuario DatUser = wsAcceso.ConsultaDatUsuario(Convert.ToInt32(UserSel.SelectedCell.RecordID)); // Guarda los datos del usuario en variables de sesion Session["UserSel"] = DatUser.Usuario_Sim.Id_Usuario; this.dpfUser.Text = Convert.ToString(Session["UserSel"]); Session["UserSuc"] = DatUser.Id_Sucursal; this.txtNombre1.Text = DatUser.Nombre_1; this.txtNombre2.Text = DatUser.Nombre_2; this.txtApellido1.Text = DatUser.Apellido_Pat; this.txtApellido2.Text = DatUser.Apellido_Mat; this.txtEmail.Text = DatUser.Correo; this.txtUser.Text = DatUser.Usuario_Sim.Usuario; this.cbEstatus.SetRawValue(DatUser.Usuario_Sim.Estado_User); this.cbCoop.SetRawValue(DatUser.Usuario_Sim.Coop); this.cbPlaza.SetRawValue(DatUser.Usuario_Sim.Plaza); this.cbSucursal.SetRawValue(DatUser.Usuario_Sim.Sucursal); if (DatUser.Activo == true) { this.chkUserActivo.Checked = true; } else { this.chkUserActivo.Checked = false; } EstadoBotones(3); CargaRoles(); } else { Acceso.GeneraMensaje("Aviso", "No tiene permiso para acceder a esta función. " + "Si necesita acceso a esta función, comuniquelo al administrador del portal", 'W'); } }