Package ecar.pojo

Examples of ecar.pojo.UnidadeOrcamentariaPeriodoExercicioUoPerExe


       
        List unidadePerexe = q.list();
        ArrayList<UnidadeOrcamentariaUO> listUnidade = new ArrayList<UnidadeOrcamentariaUO>();
       
        for (Iterator iter = unidadePerexe.iterator(); iter.hasNext();) {
          UnidadeOrcamentariaPeriodoExercicioUoPerExe unidadeTmp = (UnidadeOrcamentariaPeriodoExercicioUoPerExe) iter.next();
          listUnidade.add( unidadeTmp.getUnidadeOrcamentariaUO() );
      }
       
        return listUnidade;
       
      }
View Full Code Here


      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 ecar.pojo.UnidadeOrcamentariaPeriodoExercicioUoPerExe

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.