Ejemplo n.º 1
0
        private List <Historialdescuento> listQuery(SqlCommand stmt)
        {
            List <Historialdescuento> searchResults = new List <Historialdescuento>();
            SqlDataReader             reader        = null;

            try {
                int intt = 0; long longg = 0; double doublee = 0; DateTime datee;
                reader = stmt.ExecuteReader();
                while (reader.Read())
                {
                    Historialdescuento temp = createValueObject();

                    temp.ID_HISTORIAL_DESCUENTO = reader["ID_HISTORIAL_DESCUENTO"] != null && long.TryParse(reader["ID_HISTORIAL_DESCUENTO"].ToString(), out longg) ? longg : 0;
                    temp.ID_IMAGEN    = reader["ID_IMAGEN"] != null && long.TryParse(reader["ID_IMAGEN"].ToString(), out longg) ? longg : 0;
                    temp.ID_DESCUENTO = reader["ID_DESCUENTO"] != null && long.TryParse(reader["ID_DESCUENTO"].ToString(), out longg) ? longg : 0;
                    temp.ID_USUARIO   = reader["ID_USUARIO"] != null && long.TryParse(reader["ID_USUARIO"].ToString(), out longg) ? longg : 0;
                    temp.FECHA        = reader["FECHA"] != null && !String.IsNullOrEmpty(reader["FECHA"].ToString()) ? (DateTime)reader["FECHA"] : DateTime.MinValue;
                    temp.HORA         = reader["HORA"] != null && !String.IsNullOrEmpty(reader["HORA"].ToString()) ? (DateTime)reader["HORA"] : DateTime.MinValue;
                    temp.NUM_FACTURA  = reader["NUM_FACTURA"] != null ? reader["NUM_FACTURA"].ToString() : null;
                    searchResults.Add(temp);
                }
            }
            finally {
                if (!reader.IsClosed)
                {
                    reader.Close();
                }
                if (stmt != null)
                {
                    stmt.Dispose();
                }
            }
            return(searchResults);
        }
Ejemplo n.º 2
0
        public void delete(SqlConnection conn, Historialdescuento valueObject)
        {
            SqlCommand stmt = null;
            String     sql  = "";

            try {
                sql  = "DELETE FROM HISTORIAL_DESCUENTO WHERE (ID_HISTORIAL_DESCUENTO = @ID_HISTORIAL_DESCUENTO )";
                stmt = new SqlCommand(sql, conn);
                stmt.Parameters.AddWithValue("@ID_HISTORIAL_DESCUENTO", valueObject.ID_HISTORIAL_DESCUENTO);

                int rowcount = databaseUpdate(stmt);
                if (rowcount == 0)
                {
                    throw new Exception("Object could not be deleted! (PrimaryKey not found)");
                }
                if (rowcount > 1)
                {
                    throw new Exception("PrimaryKey Error when updating DB! (Many objects were deleted!)");
                }
            } finally {
                if (stmt != null)
                {
                    stmt.Dispose();
                }
            }
        }
Ejemplo n.º 3
0
        /**
         * Busca el primer registro que coincida con los datos enviados
         * @param Historialdescuento obj
         * @return Retorna el mismo objeto pero con los datos consultados
         */
        public Historialdescuento buscarPrimeroHistorialdescuento(Historialdescuento obj)
        {
            List <Historialdescuento> lista = null;

            try {
                HistorialdescuentoDao dao = new HistorialdescuentoDao();
                conn  = conexion.conectar();
                lista = dao.searchMatching(conn, obj);
                if (lista != null && lista.Count > 0)
                {
                    obj = (Historialdescuento)lista[0];
                }
                else
                {
                    obj.ID_HISTORIAL_DESCUENTO = -1;
                }
            } catch (Exception e) {
                obj.ID_HISTORIAL_DESCUENTO = -1;
            } finally {
                if (conn != null && conn.State == System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
            }
            return(obj);
        }
Ejemplo n.º 4
0
        /**
         * Inserta nuevo registro en la tabla
         * @param Historialdescuento obj
         * @return Retorna el mismo objeto pero con la llave primaria configurada
         */
        public Historialdescuento crearHistorialdescuento(Historialdescuento obj)
        {
            List <Historialdescuento> lista   = null;
            Historialdescuento        obj_new = new Historialdescuento();

            try {
                HistorialdescuentoDao dao = new HistorialdescuentoDao();
                conn = conexion.conectar();
                int id = Funciones.obtenerId(conn, "HISTORIAL_DESCUENTO");
                obj.ID_HISTORIAL_DESCUENTO = id;
                dao.create(conn, obj);
                //verificar existencia
                obj_new.ID_HISTORIAL_DESCUENTO = obj.ID_HISTORIAL_DESCUENTO;
                lista = dao.searchMatching(conn, obj_new);
                if (lista != null && lista.Count > 0)
                {
                    obj_new = (Historialdescuento)lista[0];
                }
                else
                {
                    obj_new.ID_HISTORIAL_DESCUENTO = -1;
                }
            } catch (Exception e) {
                obj_new.ID_HISTORIAL_DESCUENTO = -1;
            } finally {
                if (conn != null && conn.State == System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
            }
            return(obj_new);
        }
Ejemplo n.º 5
0
        /**
         * Busca los registros que coincidan con los datos enviados
         * @param Historialdescuento obj
         * @return Retorna la lista de los registros que coinciden
         */
        public Historialdescuento[] buscarHistorialdescuento(Historialdescuento obj, int pagina, int numRegPagina)
        {
            Historialdescuento[]      result = null;
            List <Historialdescuento> lista  = null;

            if (pagina > 0 && numRegPagina > 0)
            {
                pagina--;
                int limInf = 0;
                int limSup = 0;
                limInf = pagina * numRegPagina + 1;
                limSup = (pagina + 1) * numRegPagina;
                try {
                    HistorialdescuentoDao dao = new HistorialdescuentoDao();
                    conn  = conexion.conectar();
                    lista = dao.searchMatching(conn, obj, limInf, limSup);
                    if (lista != null && lista.Count > 0)
                    {
                        result = lista.ToArray();
                    }
                } catch (Exception e) {
                    result = null;
                } finally {
                    if (conn != null && conn.State == System.Data.ConnectionState.Open)
                    {
                        conn.Close();
                    }
                }
            }
            return(result);
        }
Ejemplo n.º 6
0
 public Historialdescuento[] buscarPaginacionHistorialdescuento(Historialdescuento obj, int pag, int numReg)
 {
     if (autenticacion != null && autenticacion.esValido())
     {
         return(gestionHistorialdescuento.buscarHistorialdescuento(obj, pag, numReg));
     }
     return(null);
 }
Ejemplo n.º 7
0
 public Historialdescuento[] buscarHistorialdescuento(Historialdescuento obj)
 {
     if (autenticacion != null && autenticacion.esValido())
     {
         return(gestionHistorialdescuento.buscarHistorialdescuento(obj));
     }
     return(null);
 }
Ejemplo n.º 8
0
 public bool editarHistorialdescuento(Historialdescuento obj)
 {
     if (autenticacion != null && autenticacion.esValido())
     {
         return(gestionHistorialdescuento.editarHistorialdescuento(obj));
     }
     return(false);
 }
Ejemplo n.º 9
0
 public int contarBusquedaHistorialdescuento(Historialdescuento obj)
 {
     if (autenticacion != null && autenticacion.esValido())
     {
         return(gestionHistorialdescuento.contarBusquedaHistorialdescuento(obj));
     }
     return(-1);
 }
Ejemplo n.º 10
0
        public int contarBusquedaHistorialdescuento(Historialdescuento obj)
        {
            int cantidad = -1;

            try {
                HistorialdescuentoDao dao = new HistorialdescuentoDao();
                conn     = conexion.conectar();
                cantidad = dao.countSearchMatching(conn, obj);
            } catch (Exception e) {
                cantidad = -1;
            } finally {
                if (conn != null && conn.State == System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
            }
            return(cantidad);
        }
Ejemplo n.º 11
0
        /**
         * Edita un registro en la tabla
         * @param Historialdescuento obj
         * @return boolean indicando si se realizo o no la actualizacion
         */
        public bool editarHistorialdescuento(Historialdescuento obj)
        {
            bool resultado;

            resultado = false;
            try {
                HistorialdescuentoDao dao = new HistorialdescuentoDao();
                conn = conexion.conectar();
                dao.save(conn, obj);
                resultado = true;
            } catch (Exception e) {
                resultado = false;
            } finally {
                if (conn != null && conn.State == System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
            }
            return(resultado);
        }
Ejemplo n.º 12
0
        /**
         * Busca los registros que coincidan con los datos enviados
         * @param Historialdescuento obj
         * @return Retorna la lista de los registros que coinciden
         */
        public Historialdescuento[] buscarHistorialdescuento(Historialdescuento obj)
        {
            Historialdescuento[]      result = null;
            List <Historialdescuento> lista  = null;

            try {
                HistorialdescuentoDao dao = new HistorialdescuentoDao();
                conn  = conexion.conectar();
                lista = dao.searchMatching(conn, obj);
                if (lista != null && lista.Count > 0)
                {
                    result = lista.ToArray();
                }
            } catch (Exception e) {
                result = null;
            } finally {
                if (conn != null && conn.State == System.Data.ConnectionState.Open)
                {
                    conn.Close();
                }
            }
            return(result);
        }
Ejemplo n.º 13
0
        public int countSearchMatching(SqlConnection conn, Historialdescuento valueObject)
        {
            bool   first = true;
            String sql   = "SELECT COUNT(*) FROM HISTORIAL_DESCUENTO WHERE 1=1 ";

            if (valueObject.ID_HISTORIAL_DESCUENTO != null && valueObject.ID_HISTORIAL_DESCUENTO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_HISTORIAL_DESCUENTO= " + valueObject.ID_HISTORIAL_DESCUENTO + " ";
            }

            if (valueObject.ID_IMAGEN != null && valueObject.ID_IMAGEN != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_IMAGEN= " + valueObject.ID_IMAGEN + " ";
            }

            if (valueObject.ID_DESCUENTO != null && valueObject.ID_DESCUENTO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_DESCUENTO= " + valueObject.ID_DESCUENTO + " ";
            }

            if (valueObject.ID_USUARIO != null && valueObject.ID_USUARIO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_USUARIO= " + valueObject.ID_USUARIO + " ";
            }

            if (valueObject.FECHA != DateTime.MinValue)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND FECHA= '" + valueObject.FECHA.ToString("dd/MM/yyyy HH:mm:ss") + "' ";
            }

            if (valueObject.HORA != DateTime.MinValue)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND HORA= '" + valueObject.HORA.ToString("dd/MM/yyyy HH:mm:ss") + "' ";
            }

            if (!String.IsNullOrEmpty(valueObject.NUM_FACTURA))
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND NUM_FACTURA= '" + valueObject.NUM_FACTURA + "' ";
            }

            SqlCommand    stmt    = null;
            SqlDataReader result  = null;
            int           allRows = 0;

            try {
                stmt   = new SqlCommand(sql, conn);
                result = stmt.ExecuteReader();
                if (result.Read())
                {
                    allRows = int.Parse(result[0].ToString());
                }
            } finally {
                if (!result.IsClosed)
                {
                    result.Close();
                }
                if (stmt != null)
                {
                    stmt.Dispose();
                }
            }
            return(allRows);
        }
Ejemplo n.º 14
0
        public void create(SqlConnection conn, Historialdescuento valueObject)
        {
            String     sql  = "";
            SqlCommand stmt = null;

            try {
                sql = "INSERT INTO HISTORIAL_DESCUENTO ( ID_HISTORIAL_DESCUENTO," +
                      " ID_IMAGEN, ID_DESCUENTO, ID_USUARIO," +
                      " FECHA, HORA, NUM_FACTURA" +
                      ")" +
                      "VALUES ( @ID_HISTORIAL_DESCUENTO, @ID_IMAGEN, @ID_DESCUENTO, @ID_USUARIO, @FECHA, @HORA, @NUM_FACTURA)";
                stmt = new SqlCommand(sql, conn);
                stmt.Parameters.AddWithValue("@ID_HISTORIAL_DESCUENTO", valueObject.ID_HISTORIAL_DESCUENTO);
                if (valueObject.ID_IMAGEN != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_IMAGEN", valueObject.ID_IMAGEN);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_IMAGEN", DBNull.Value);
                }
                if (valueObject.ID_DESCUENTO != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_DESCUENTO", valueObject.ID_DESCUENTO);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_DESCUENTO", DBNull.Value);
                }
                if (valueObject.ID_USUARIO != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_USUARIO", valueObject.ID_USUARIO);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_USUARIO", DBNull.Value);
                }
                if (valueObject.FECHA != DateTime.MinValue)
                {
                    stmt.Parameters.AddWithValue("@FECHA", valueObject.FECHA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@FECHA", DBNull.Value);
                }
                if (valueObject.HORA != DateTime.MinValue)
                {
                    stmt.Parameters.AddWithValue("@HORA", valueObject.HORA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@HORA", DBNull.Value);
                }
                if (valueObject.NUM_FACTURA != null && valueObject.NUM_FACTURA.Length <= 100)
                {
                    stmt.Parameters.AddWithValue("@NUM_FACTURA", valueObject.NUM_FACTURA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@NUM_FACTURA", DBNull.Value);
                }



                databaseUpdate(stmt);
            } finally {
                if (stmt != null)
                {
                    stmt.Dispose();
                }
            }
        }
Ejemplo n.º 15
0
        public List <Historialdescuento> searchMatching(SqlConnection conn, Historialdescuento valueObject, int limiteInf, int limiteSup)
        {
            List <Historialdescuento> searchResults = new List <Historialdescuento>();
            bool   first = true;
            String sql   = "SELECT * FROM HISTORIAL_DESCUENTO WHERE 1=1 ";

            if (valueObject.ID_HISTORIAL_DESCUENTO != null && valueObject.ID_HISTORIAL_DESCUENTO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_HISTORIAL_DESCUENTO= " + valueObject.ID_HISTORIAL_DESCUENTO + " ";
            }

            if (valueObject.ID_IMAGEN != null && valueObject.ID_IMAGEN != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_IMAGEN= " + valueObject.ID_IMAGEN + " ";
            }

            if (valueObject.ID_DESCUENTO != null && valueObject.ID_DESCUENTO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_DESCUENTO= " + valueObject.ID_DESCUENTO + " ";
            }

            if (valueObject.ID_USUARIO != null && valueObject.ID_USUARIO != 0)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND ID_USUARIO= " + valueObject.ID_USUARIO + " ";
            }

            if (valueObject.FECHA != DateTime.MinValue)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND FECHA= '" + valueObject.FECHA.ToString("dd/MM/yyyy HH:mm:ss") + "' ";
            }

            if (valueObject.HORA != DateTime.MinValue)
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND HORA= '" + valueObject.HORA.ToString("dd/MM/yyyy HH:mm:ss") + "' ";
            }

            if (!String.IsNullOrEmpty(valueObject.NUM_FACTURA))
            {
                if (first)
                {
                    first = false;
                }
                sql += "AND NUM_FACTURA= '" + valueObject.NUM_FACTURA + "' ";
            }

            sql += ") AS CONSULTA WHERE RowNumber >=" + limiteInf + " AND RowNumber <=" + limiteSup;

            if (first)
            {
                searchResults = new List <Historialdescuento>();
            }
            else
            {
                searchResults = listQuery(new SqlCommand(sql, conn));
            }

            return(searchResults);
        }
Ejemplo n.º 16
0
        public void save(SqlConnection conn, Historialdescuento valueObject)
        {
            SqlCommand stmt = null;
            String     sql  = "";

            try {
                sql = "UPDATE HISTORIAL_DESCUENTO SET  ID_IMAGEN = @ID_IMAGEN , ID_DESCUENTO = @ID_DESCUENTO , ID_USUARIO = @ID_USUARIO ," +
                      " FECHA = @FECHA , HORA = @HORA , NUM_FACTURA = @NUM_FACTURA " +
                      " WHERE (ID_HISTORIAL_DESCUENTO= @ID_HISTORIAL_DESCUENTO)";
                stmt = new SqlCommand(sql, conn);
                if (valueObject.ID_IMAGEN != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_IMAGEN", valueObject.ID_IMAGEN);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_IMAGEN", DBNull.Value);
                }
                if (valueObject.ID_DESCUENTO != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_DESCUENTO", valueObject.ID_DESCUENTO);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_DESCUENTO", DBNull.Value);
                }
                if (valueObject.ID_USUARIO != 0)
                {
                    stmt.Parameters.AddWithValue("@ID_USUARIO", valueObject.ID_USUARIO);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@ID_USUARIO", DBNull.Value);
                }
                if (valueObject.FECHA != DateTime.MinValue)
                {
                    stmt.Parameters.AddWithValue("@FECHA", valueObject.FECHA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@FECHA", DBNull.Value);
                }
                if (valueObject.HORA != DateTime.MinValue)
                {
                    stmt.Parameters.AddWithValue("@HORA", valueObject.HORA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@HORA", DBNull.Value);
                }
                if (valueObject.NUM_FACTURA != null && valueObject.NUM_FACTURA.Length <= 100)
                {
                    stmt.Parameters.AddWithValue("@NUM_FACTURA", valueObject.NUM_FACTURA);
                }
                else
                {
                    stmt.Parameters.AddWithValue("@NUM_FACTURA", DBNull.Value);
                }
                stmt.Parameters.AddWithValue("@ID_HISTORIAL_DESCUENTO", valueObject.ID_HISTORIAL_DESCUENTO);

                int rowcount = databaseUpdate(stmt);
                if (rowcount == 0)
                {
                    throw new Exception("Object could not be saved! (PrimaryKey not found)");
                }
            } finally {
                if (stmt != null)
                {
                    stmt.Dispose();
                }
            }
        }