Package ecar.bean

Examples of ecar.bean.FonteRecursosPPA


          //int total = 0;
          builder.addNode("totalizadorValores");

          Iterator itTotalizadores = totalizadorValores.iterator();
            while(itTotalizadores.hasNext()){
              FonteRecursosPPA tr = (FonteRecursosPPA) itTotalizadores.next();
              String nome = tr.getLabel();
              String valor = Util.formataMoeda(tr.getValor());
             
              //total += tr.getTotal();
              builder.addClosedNode("totalizador",
                  "nome=\"" + builder.normalize(nome) + "\"" +
                  " valor=\"" + builder.normalize(valor) + "\"");
View Full Code Here


        }
      }
     
      Iterator itFontesPPA = fontesRecursosPPAs.iterator();
      while(itFontesPPA.hasNext()){
        FonteRecursosPPA fonteIncluida = (FonteRecursosPPA) itFontesPPA.next();
      builder.addClosedNode("valor",
          "label=\"" + builder.normalize(fonteIncluida.getLabel()) + "\"" +
          " valor=\"" + builder.normalize("R$ " + Util.formataMoeda(fonteIncluida.getValor())) + "\"");
      valorTotal +=  fonteIncluida.getValor();
      }
           
      builder.addClosedNode("valor", "label=\"Total\" valor=\"" + builder.normalize("R$ " + Util.formataMoeda(valorTotal)) + "\"");
     
    }
View Full Code Here

     * @param label
     *
     */
    public void incrementarFonteRecurso(Long idFonteRecurso, String label, double valor){
      if(!idsFontesRecursos.contains(idFonteRecurso)){
        FonteRecursosPPA fonteBean = new FonteRecursosPPA();
        fonteBean.setId(idFonteRecurso);
        fonteBean.setLabel(label);
        fonteBean.setValor(valor);
       
        idsFontesRecursos.add(idFonteRecurso);
        fontesRecursosPPAs.add(fonteBean);
      }
      else {
        Iterator itFontesBean = fontesRecursosPPAs.iterator();
        while(itFontesBean.hasNext()){
          FonteRecursosPPA fonteBean = (FonteRecursosPPA) itFontesBean.next();
          if(fonteBean.getId().equals(idFonteRecurso)){
            fonteBean.somaValor(valor);
            break;
          }
        }
      }
    }
View Full Code Here

     * @param String nomeValor
     * @param double valor
     */
    private void incrementarTotalizadorValor(Long idValor, String nomeValor, double valor){
      if(!idsValores.contains(idValor)){
        FonteRecursosPPA totalizador = new FonteRecursosPPA();
        totalizador.setId(idValor);
        totalizador.setLabel(nomeValor);
        totalizador.setValor(valor);
       
        idsValores.add(idValor);
        totalizadorValores.add(totalizador);
      }
      else {
        Iterator itTotalizadores = totalizadorValores.iterator();
        while(itTotalizadores.hasNext()){
             FonteRecursosPPA totalizador = (FonteRecursosPPA) itTotalizadores.next();
             if(idValor.equals(totalizador.getId())){
               totalizador.somaValor(valor);
               break;
               }
        }
      }
    }
View Full Code Here

          //int total = 0;
          builder.addNode("totalizadorValores");

          Iterator itTotalizadores = totalizadorValores.iterator();
            while(itTotalizadores.hasNext()){
              FonteRecursosPPA tr = (FonteRecursosPPA) itTotalizadores.next();
              String nome = tr.getLabel();
              String valor = "R$ " + Util.formataMoeda(tr.getValor());
             
              //total += tr.getTotal();
              builder.addClosedNode("totalizador",
                  "nome=\"" + builder.normalize(nome) + "\"" +
                  " valor=\"" + builder.normalize(valor) + "\"");
View Full Code Here

TOP

Related Classes of ecar.bean.FonteRecursosPPA

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.