Пример #1
0
        public static IDataReader ObtenerAnalisisDePrecios(string NumeroId)
        {
            string Sentencia = "SELECT * FROM Benef";

            //Sentencia += "WHERE (Numero = " + NumeroId + ")";

            return(AyudanteMSSql.EjecutarDataReader(ConfigurationSettings.AppSettings["ConexionApoyo"], System.Data.CommandType.Text, Sentencia));
        }
Пример #2
0
        public static IDataReader ObtenerBeneficiarios(string Busqueda)
        {
            string Sentencia = "SELECT * FROM Benef WHERE ";

            Sentencia += "(RIF LIKE '%" + Busqueda + "%') OR ";
            Sentencia += "(Nombre LIKE '%" + Busqueda + "%') ";
            Sentencia += "ORDER BY Nombre";

            return(AyudanteMSSql.EjecutarDataReader(ConfigurationSettings.AppSettings["ConexionApoyo"], System.Data.CommandType.Text, Sentencia));
        }
        public static IDataReader ObtenerOrdenesCompras(string Sector, DateTime Desde, DateTime Hasta)
        {
            string Sentencia = "SELECT DISTINCT a.Nro_Comp, a.Fecha_Orden, a.Direccion,";

            Sentencia += " d.Rif, d.Nombre, b.Monto, left(c.Nro_det, 10) as Codigo, cast(b.Obs as varchar(200)) as Observacion, a.Indi_Anulacion";
            Sentencia += " FROM Orden_Compra a, Comprom b, Det_Comp c, Benef d";
            Sentencia += " WHERE (a.Nro_Comp = b.Nro_Comp) and (b.Tipo = 'OC') and";
            Sentencia += " (b.Cod_Benef = d.Cod_Benef) and (b.Nro_Refer = c.Nro_Refer) and";
            Sentencia += " (left(c.Nro_det,2) = ";
            Sentencia += Sector + ") and (a.Fecha_Orden >= '" + Desde.ToShortDateString();
            Sentencia += "')";

            return(AyudanteMSSql.EjecutarDataReader(ConfigurationSettings.AppSettings["ConexionApoyo"], System.Data.CommandType.Text, Sentencia));
        }
        public static IDataReader ObtenerOrdenesServicios(string Sector, DateTime Desde, DateTime Hasta)
        {
            string Sentencia = "SELECT * FROM Benef";

            return(AyudanteMSSql.EjecutarDataReader(ConfigurationSettings.AppSettings["ConexionApoyo"], System.Data.CommandType.Text, Sentencia));
        }
Пример #5
0
        public static IDataReader ObtenerBeneficiarios()
        {
            string Sentencia = "SELECT * FROM Benef";

            return(AyudanteMSSql.EjecutarDataReader(ConfigurationSettings.AppSettings["ConexionApoyo"], System.Data.CommandType.Text, Sentencia));
        }