Package ecar.pojo

Examples of ecar.pojo.OrgaoPeriodoExercicioOrgPerExe


       
        List orgaoPerexe = q.list();
        ArrayList<OrgaoOrg> listOrgao = new ArrayList<OrgaoOrg>();
       
        for (Iterator iter = orgaoPerexe.iterator(); iter.hasNext();) {
          OrgaoPeriodoExercicioOrgPerExe orgTmp = (OrgaoPeriodoExercicioOrgPerExe) iter.next();
          listOrgao.add( orgTmp.getOrgaoOrg() );
      }
       
        return listOrgao;
       
      }
View Full Code Here


       
        List orgaoPerexe = q.list();
        ArrayList<OrgaoOrg> listOrgao = new ArrayList<OrgaoOrg>();
       
        for (Iterator iter = orgaoPerexe.iterator(); iter.hasNext();) {
          OrgaoPeriodoExercicioOrgPerExe orgTmp = (OrgaoPeriodoExercicioOrgPerExe) iter.next();
          listOrgao.add( orgTmp.getOrgaoOrg() );
      }
       
        return listOrgao;
       
      }
View Full Code Here

      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);
View Full Code Here

TOP

Related Classes of ecar.pojo.OrgaoPeriodoExercicioOrgPerExe

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.