Example #1
0
  private void cargarArchivosporEntidad() {

    lstItemsEntidad.clear();
    lstItemsEntidad.add(new SelectItem("-1", "Seleccione"));
    AdmEntidad e = aslb.getLstEntidadporId("95");
    lstItemsEntidad.add(new SelectItem(e.getEntId(), e.getEntNombre()));
  }
Example #2
0
  // </editor-fold>
  private void cargarEntidadXSectores() {

    lstItemsEntidad.clear();
    lstItemsEntidad.add(itemSeleccioneStr);
    for (AdmEntidad as : aslb.getLstEntxSe(intSectorEsSel)) {
      lstItemsEntidad.add(new SelectItem(as.getEntId(), as.getEntNombre()));
    }
  }
Example #3
0
  public void cargarEntidadXSectoresXSectorad() {

    lstItemsEntidad.clear();
    lstItemsEntidad.add(new SelectItem("-1", "Seleccione"));
    for (AdmEntidad aa : aslb.getLstEntxSexSa(intSectorEsSel, intSectorAdSel)) {
      lstItemsEntidad.add(new SelectItem(aa.getEntId(), aa.getEntNombre()));
      //            lstItemsEntidad.clear();

    }
  }