Esempio n. 1
0
 private void doReport(Discapacidad o) throws MissingReportException, JRException {
   Reportes r =
       new Reportes(
           DAO.getJDBCConnection(),
           SGD.getResources().getString("report.codigobarra"),
           "Archivo " + o.getClass().getSimpleName() + " N" + o.getBarcode());
   r.addParameter("TABLA", o.getClass().getSimpleName());
   r.addParameter("ID_TABLA", o.getId());
   r.viewReport();
 }
Esempio n. 2
0
 CustomABMJDialog viewArchivo(Discapacidad o) {
   abmPanel = new ABMDiscapacidadPanel();
   UTIL.hideColumnTable(abmPanel.getjTable1(), 0);
   abmPanel.getCbInstitucion().addItem(o.getInstitucion().getNombre());
   setPanelABM(o);
   CustomABMJDialog ccustomABMJDialog =
       new CustomABMJDialog(
           null,
           abmPanel,
           "Archivo " + o.getClass().getSimpleName() + " " + o.getBarcode(),
           true,
           null);
   ccustomABMJDialog.setToolBarVisible(false);
   ccustomABMJDialog.setBottomButtonsVisible(false);
   ccustomABMJDialog.setPanelComponentsEnabled(false);
   return ccustomABMJDialog;
 }