Exemple #1
0
    public static string ValidaDescuentosOpcionales(string cod_docum)
    {
        try
        {
            using (OracleConnection cnx = MConexion.getConexion("OVDES"))
            {
                Vehiculo_DB objdb = new Vehiculo_DB();
                DataSet     ds    = objdb.getDescuentosOpcionales_DB(cod_docum, "801", cnx);

                DataTable dt = ds.Tables[0];

                if (dt.Rows.Count >= 1)
                {
                    return("S");
                }
                else
                {
                    return("N");
                }
                ds.Dispose();
            }
        }
        catch (Exception ex)
        {
            return("N");
        }
    }
Exemple #2
0
    public static void getDescuentosOpcionales(DropDownList cmb1, string cod_docum)
    {
        try
        {
            using (OracleConnection cnx = MConexion.getConexion("OVDES"))
            {
                Vehiculo_DB objdb = new Vehiculo_DB();
                DataSet     ds    = objdb.getDescuentosOpcionales_DB(cod_docum, "801", cnx);

                DataTable dt = ds.Tables[0];

                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    cmb1.Items.Add(new ListItem(dt.Rows[i]["PORC"].ToString(), dt.Rows[i]["COD_DESCUENTO"].ToString()));
                }
                cmb1.Items.Insert(0, new ListItem("0", "0"));
                cmb1.SelectedIndex = 0;

                ds.Dispose();
            }
        }
        catch (Exception ex)
        {
            throw new Exception(ex.Message);
        }
    }