// ---------------------------------------------------------------------------------------------------
 public void onClick$btnImprimir()
     throws WrongValueException, ParseException, JRException, IOException, SQLException {
   con = ConeccionBD.getCon("postgres", "postgres", "123456");
   jrxmlSrc =
       Sessions.getCurrent()
           .getWebApp()
           .getRealPath("/WEB-INF/reportes/ReporteControlMorosidad.jrxml");
   if (Validacion.validarFecha(dtbFechaVenDesde, dtbFechaVenHasta)) {
     DateFormat format = new SimpleDateFormat("dd/MM/yyyy");
     Date startDate = (Date) format.parse(dtbFechaVenDesde.getText());
     Date endDate = (Date) format.parse(dtbFechaVenHasta.getText());
     parameters.put("fechavendes", startDate);
     parameters.put("fechavenhas", endDate);
     ManejadorJasper.showReportfromJrxml(jrxmlSrc, parameters, con, "Control de Morosidad");
   }
 }
  public void onClick$btnImprimir()
      throws SQLException, JRException, IOException, WrongValueException, ParseException {

    con = ConeccionBD.getCon("postgres", "postgres", "123456");
    //		if (cmbEgresos.getSelectedItem().getLabel().equals("TODOS")){
    //			jrxmlSrc =
    // Sessions.getCurrent().getWebApp().getRealPath("/WEB-INF/reportes/egresosnoparams.jrxml");
    //		}else {
    DateFormat format = new SimpleDateFormat("dd/MM/yyyy");
    Date startDate = (Date) format.parse(dtbFechaInicio.getText());
    Date endDate = (Date) format.parse(dtbFechaFin.getText());
    jrxmlSrc =
        Sessions.getCurrent().getWebApp().getRealPath("/WEB-INF/reportes/Ingresos_Egresos.jrxml");
    //		}
    parameters.put("Inicio", startDate);
    parameters.put("Fin", endDate);
    //		parameters.put("tipo_Egreso",cmbEgresos.getSelectedItem().getLabel());
    showReportfromJrxml();
  }