private void Btn_solicitar_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(Txt_descripcion.Text) && !String.IsNullOrEmpty(serie) && !String.IsNullOrEmpty(correlativo))
     {
         int contador = 0;
         try
         {
             contador = logicaConsulta.comprobarDevolucion(correlativo, serie, contador);
             if (contador == 0)
             {
                 logicaConsulta.agregarDevolucion(correlativo, serie, Txt_descripcion.Text);
                 serie       = null;
                 correlativo = null;
                 Dgv_facturas.Rows.Clear();
                 Txt_correlativo.Text = null;
                 Txt_nombres.Text     = null;
                 Txt_descripcion.Text = null;
                 Txt_apellidos.Text   = null;
                 Txt_nit.Text         = null;
                 Txt_impuesto.Text    = null;
                 Txt_total.Text       = null;
                 Txt_subtotal.Text    = null;
                 Txt_fecha.Text       = null;
                 Txt_registros.Text   = null;
             }
             else
             {
                 MessageBox.Show("La factura seleccionada ya tiene un proceso!", "Devoluciones", MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
         catch
         {
             MessageBox.Show("Erro al Enviar Solicitud!", "Devoluciones", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
     else
     {
         MessageBox.Show("Hay Campos Vacios!", "Devoluciones", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }