String recargopagofueradetermino = this.jLabelRecargo.getText();
String recargoFormaPago = "$" + this.jLabelRecargoFormaPago.getText();
String totalapagar = this.jLabelTotalAPagar.getText();
Factura factura = new Factura(fecha,
alumno.getApellido() + "," +
alumno.getNombre(),
alumno.getDomicilio(),
strRecargoFormaPago,
cuotaBasica.getCurso().getNombre(),
cuotaBasica.getConcepto(), importeCuota,
conceptodescuento, "-" + importedescuento,
recargopagofueradetermino,
recargoFormaPago, totalapagar,alumno.getDni());
factura.display();
this.setVisible(false);
}