Package comum.database

Examples of comum.database.Dao


                sAreas.add(sArea);
              }
            } else {
              sArea = new SubAreaSare();
              sArea.setIndAtivoSare("S");
              sAreas = new Dao().pesquisar(sArea, new String[] { atributo.iGetNomeFk(), "asc" });
            }
         
            List options = new ArrayList();
            Iterator it = sAreas.iterator();
            while (it.hasNext()) {
View Full Code Here


                orgaos.add(orgao);
              }
            } else {
              orgao = new OrgaoOrg();
              orgao.setIndAtivoOrg("S");
              orgaos = new Dao().pesquisar(orgao, new String[] {atributo.iGetNomeFk(), "asc" });
            }
            List options = new ArrayList();
            Iterator it = orgaos.iterator();
            while (it.hasNext()) {
                orgao = (OrgaoOrg) it.next();
View Full Code Here

            } else {
              if (getItemEstruturaIett() != null){
                codIett = getItemEstruturaIett().getCodIett();
              }
              prd = new PeriodicidadePrdc();
              periodicidades = new Dao().pesquisar(prd, new String[] {atributo.iGetNomeFk(), "asc" });
            }
           
           
            List options = new ArrayList();
            Iterator it = periodicidades.iterator();
View Full Code Here

     * @author aleixo
     * @since 12/07/2007
     * @throws ECARException
     */
    public void efetuarCargaPeriodoExercicios() throws ECARException{
      Dao dao = new Dao();
      PeriodoExercicioDao perExeDao = new PeriodoExercicioDao(request);
      PeriodoExercicioPerExe perExe = (PeriodoExercicioPerExe) perExeDao.buscar(PeriodoExercicioPerExe.class, Long.valueOf(2)); //2 � o 2008-2011
     
      PoderDao poderDao = new PoderDao(request);
      List<PoderPod> poderes = poderDao.listar(PoderPod.class, null);
      for(PoderPod poder : poderes){
      PoderPeriodoExercicioPodPerExePK compId = new PoderPeriodoExercicioPodPerExePK();
      compId.setCodPerExe(perExe.getCodPerExe());
      compId.setCodPod(poder.getCodPod());
     
      PoderPeriodoExercicioPodPerExe podPerExe = new PoderPeriodoExercicioPodPerExe();
      podPerExe.setCompId(compId);
      podPerExe.setIndAtivoPodPerExe("S");
      podPerExe.setPoderPod(poder);
      podPerExe.setPeriodoExercicioPerExe(perExe);
     
      dao.salvar(podPerExe);
    }
     
      OrgaoDao orgaoDao = new OrgaoDao(request);
      List<OrgaoOrg> orgaos = orgaoDao.listar(OrgaoOrg.class, null);
      for(OrgaoOrg orgao : orgaos){
      OrgaoPeriodoExercicioOrgPerExePK compId = new OrgaoPeriodoExercicioOrgPerExePK();
      compId.setCodPerExe(perExe.getCodPerExe());
      compId.setCodOrg(orgao.getCodOrg());
     
      OrgaoPeriodoExercicioOrgPerExe orgPerExe = new OrgaoPeriodoExercicioOrgPerExe();
      orgPerExe.setCompId(compId);
      orgPerExe.setIndAtivoOrgPerExe("S");
      orgPerExe.setOrgaoOrg(orgao);
      orgPerExe.setPeriodoExercicioPerExe(perExe);
     
      dao.salvar(orgPerExe);
    }
     
      UnidadeOrcamentariaDao uoDao = new UnidadeOrcamentariaDao(request);
      List<UnidadeOrcamentariaUO> uos = uoDao.listar(UnidadeOrcamentariaUO.class, null);
      for(UnidadeOrcamentariaUO unidade : uos){
        UnidadeOrcamentariaPeriodoExercicioUoPerExePK compId = new UnidadeOrcamentariaPeriodoExercicioUoPerExePK();
        compId.setCodPerExe(perExe.getCodPerExe());
        compId.setCodUo(unidade.getCodUo());
       
        UnidadeOrcamentariaPeriodoExercicioUoPerExe uoPerExe = new UnidadeOrcamentariaPeriodoExercicioUoPerExe();
        uoPerExe.setCompId(compId);
        uoPerExe.setIndAtivoUoPerExe("S");
        uoPerExe.setPeriodoExercicioPerExe(perExe);
        uoPerExe.setUnidadeOrcamentariaUO(unidade);
       
        dao.salvar(uoPerExe);
      }
    }
View Full Code Here

TOP

Related Classes of comum.database.Dao

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.