private void Buscar(Ent_Usuario _Ent_Usuario) { try { _Ent_Usuario.ClaveEntidad = ddlEntidad.SelectedValue; Negocio.Reportes rep = new Negocio.Reportes(); rep._Ent_Usuario = new ReportesArg { _Ent_Usuario = _Ent_Usuario }; rep.Proc = Negocio.Reportes.Procedimientos.spt_Asignacion_SEL_Reporte_General; rep.Busqueda(); if (rep.datos != null) { gvReporte.DataSource = rep.datos; gvReporte.DataBind(); gvReporte.Visible = true; lblMensaje.Visible = false; } else { gvReporte.Visible = false; lblMensaje.Visible = true; } } catch { gvReporte.Visible = false; lblMensaje.Visible = true; } }
private void Buscar(Ent_Usuario _Ent_Usuario) { try { Negocio.Reportes rep = new Negocio.Reportes(); rep._Ent_Usuario = new ReportesArg { _Ent_Usuario = _Ent_Usuario }; rep.Proc = Negocio.Reportes.Procedimientos.spt_Asignacion_SEL_Cat_TipoNombramiento; rep.Busqueda(); if (rep.datos != null) { gvReporte.DataSource = rep.datos; gvReporte.DataBind(); gvReporte.Visible = true; } } catch { } }
private void Llenar_Entidades() { Negocio.Reportes rep = new Negocio.Reportes(); rep.Proc = Negocio.Reportes.Procedimientos.spt_Asignacion_SEL_Entidades; rep.Busqueda(); if (rep.datos != null) { ListItem li = new ListItem(); li.Value = "-1"; li.Text = " -- Todas las Entidades -- "; ddlEntidad.Items.Add(li); foreach (DataRow dr in rep.datos.Tables[0].Rows) { li = new ListItem(); li.Value = dr["ClaveEntidad"].ToString(); li.Text = dr["Descripcion"].ToString(); ddlEntidad.Items.Add(li); } } }
private void Buscar(Ent_Usuario _Ent_Usuario) { if (Validar_Usuario(_Ent_Usuario, _Ent_Usuario.ClaveEntidad) == true) { try { Negocio.Reportes rep = new Negocio.Reportes(); rep._Ent_Usuario = new ReportesArg { _Ent_Usuario = _Ent_Usuario }; rep.Proc = Negocio.Reportes.Procedimientos.spt_Asignacion_SEL_Reporte_De_Asignaciones; rep.Busqueda(); if (rep.datos != null) { gvReporte.DataSource = rep.datos; gvReporte.DataBind(); gvReporte.Visible = true; lblMensaje.Visible = false; } else { gvReporte.Visible = false; lblMensaje.Visible = true; } } catch { gvReporte.Visible = false; lblMensaje.Visible = true; } } else { gvReporte.Visible = false; lblMensaje.Visible = true; } }