Package ecar.pojo

Examples of ecar.pojo.ConfigExecFinanCef


          int tamanhoConta = 0;
          if (estruturasContabil != null) {
             
              Iterator it = estruturasContabil.iterator();
              while(it.hasNext()){
                  ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it.next();
                  /* Para cada campo da estrutura, na conta � adicionado um espa�o em branco.
                   * Portanto, deve-se somar ao tamanho, o numero de caracteres+1 */
                  tamanhoConta += estruturaContabil.getNumCaracteresCef().intValue() + 1;
              }
              tamanhoConta--; //Decremento o tamanho conta pq o �ltimo espa�o em branco (final) � retirado com trim().
          }   
     
          if(conta.length() != tamanhoConta){
View Full Code Here


            String hidEstruturasContabeis = "";
           
            int i = 0;      
            while (it.hasNext()) {
                String strValor = "";
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it
                        .next();
                /* este try-catch serve para aassegurar que n�o ir� ocorrer uma exce��o ao ler valores ap�s
                 * ter sido criada uma nova estrutura cont�bil
                 */
                try{
                    if(camposConta[i] != null)
                        strValor = camposConta[i];                   
                } catch ( ArrayIndexOutOfBoundsException ex){
                    strValor = "";
                    //this.logger.error(ex); N�o � necess�rio logar essa exce��o
                }
                if(!"".equals(Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef())))
                    strValor = Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef());
                retorno.append("<div class=\"tabelaaolado\">")
                     .append(estruturaContabil.getLabelCef())
                     .append("&nbsp;&nbsp;</br>")
                     .append("<input type=\"text\" size=\"")
                     .append(estruturaContabil.getNumCaracteresCef())
                     .append("\" maxlength=\"")
                     .append(estruturaContabil.getNumCaracteresCef())
                     .append("\" name=\"e")
                     .append(estruturaContabil.getCodCef())
                     .append(String.valueOf(versao.getCodCsefv()))
                     .append("\" value=\"")
                     .append(strValor)
                     .append("\"");
                hidEstruturasContabeis += estruturaContabil.getCodCef().toString() + "|";
               if(disabled)
                   retorno.append( " disabled ");
               retorno.append("></div>");              
                i++;
            }
View Full Code Here

                camposConta = strConta.split(" ");

            int i = 0;      
            while (it.hasNext()) {
                String strValor = "";
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it
                        .next();
                /* este try-catch serve para aassegurar que n�o ir� ocorrer uma exce��o ao ler valores ap�s
                 * ter sido criada uma nova estrutura cont�bil
                 */
                try{
                    if(camposConta[i] != null)
                        strValor = camposConta[i];                   
                } catch ( ArrayIndexOutOfBoundsException ex){
                 
                  strValor = "";
                }
               
                StringBuilder buffer = new StringBuilder();
                StringBuilder campoHidden = new StringBuilder();
             
              if("validaCategoria".equals(estruturaContabil.getConfigTipoDadoCtd().getIdRotinaCtd())) {
               
                Query q = null;
              q =  HibernateUtil.currentSession().createQuery("from FonteRecursoFonr");
              List<FonteRecursoFonr> categorias = (List<FonteRecursoFonr>)q.list();
             
              for(FonteRecursoFonr categoria : categorias) {
                buffer.append(categoria.getSiglaFonr() + ",");
              }
             
              String strBuffer = buffer.toString().substring(0, buffer.toString().lastIndexOf(","));
             
              campoHidden.append("<input type='hidden' name='categorias' id='categorias' value='" + strBuffer + "'>");
               
              }
             
             
              if("validaFonte".equals(estruturaContabil.getConfigTipoDadoCtd().getIdRotinaCtd())) {
               
                Query q = null;
              q =  HibernateUtil.currentSession().createQuery("from RecursoRec");
              List<RecursoRec> fontes = (List<RecursoRec>)q.list();
             
              for(RecursoRec fonte : fontes) {
                buffer.append(fonte.getSiglaRec() + ",");
              }
             
              String strBuffer = buffer.toString().substring(0, buffer.toString().lastIndexOf(","));
              campoHidden.append("<input type='hidden' name='fontes' id='fontes' value='" + strBuffer + "'>");
               
              }
               
                if(!"".equals(Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef())))
                    strValor = Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef());
                retorno.append("<div class=\"tabelaaolado\">")
                     .append(estruturaContabil.getLabelCef() )
                     .append("&nbsp;&nbsp;</br>")
                     .append("<input type=\"text\" size=\"")
                     .append(estruturaContabil.getNumCaracteresCef())
                     .append("\" maxlength=\"")
                     .append(estruturaContabil.getNumCaracteresCef())
                     .append("\" name=\"e")
                     .append(estruturaContabil.getCodCef())
                     .append("\" value=\"")
                     .append(strValor)
                     .append("\"");
               if(disabled)
                   retorno.append( " disabled ");
View Full Code Here

        List estruturasContabil = new ConfigExecFinanDao(request).listar(
                ConfigExecFinanCef.class, new String[] { "seqApresentacaoCef","asc" });
        if (estruturasContabil != null) {
            Iterator it = estruturasContabil.iterator();
            while (it.hasNext()) {
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it
                        .next();
                if(retorno.length() > 0)
                    retorno.append(" / ");
                retorno.append(estruturaContabil.getLabelCef());
            }
        }
        return retorno.toString();
    }
View Full Code Here

                        new String [] {"seqApresentacaoCef","asc"});
      if(estruturasContabil != null){
          Iterator it = estruturasContabil.iterator();
          while ( it.hasNext() ){
             
            ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it.next();
           
              retorno.append("if (!")
                   .append(estruturaContabil.getConfigTipoDadoCtd().getIdRotinaCtd())
                   .append("(form.e")
                   .append(estruturaContabil.getCodCef())
                   .append(",'")
                   .append(estruturaContabil.getLabelCef())
                   .append("',true))\n")
                   .append(" return false;\n");
          }
      }
      return retorno.toString();
View Full Code Here

                ConfigExecFinanCef.class, new String[] { "seqApresentacaoCef","asc" });
        String estrutura = "";
        if (estruturasContabil != null) {
            Iterator it = estruturasContabil.iterator();
            while(it.hasNext()){
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it.next();
                if(estrutura.length() > 0)
                    estrutura += " ";
                estrutura += Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef());               
            }
            /*
             * Por causa destes ifs neste m�todo os valores da Estrutura n�o s�o perdidos na altera��o. Motivo: na tela de alterar
             * conta todos os campos, com a exce��o do Acumulado est�o desabilitados e por isso n�o s�o enviados por request.
             * Quando fa�o essa compara��o, ao verificar que estes campos est�o vazios, mantenho os valores existentes originalmente
View Full Code Here

        String estrutura = "";
        if (estruturasContabil != null) {
           
            Iterator it = estruturasContabil.iterator();
            while(it.hasNext()){
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it.next();
                if(estrutura.length() > 0)
                    estrutura += " ";
                //estrutura += Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef().toString() + mes + ano + verSistema);               
                estrutura += Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef().toString() + String.valueOf(versao.getCodCsefv()));               
            }
            /*
             * Por causa destes ifs neste m�todo os valores da Estrutura n�o s�o perdidos na altera��o. Motivo: na tela de alterar
             * conta todos os campos, com a exce��o do Acumulado est�o desabilitados e por isso n�o s�o enviados por request.
             * Quando fa�o essa compara��o, ao verificar que estes campos est�o vazios, mantenho os valores existentes originalmente
View Full Code Here

        String estrutura = "";
        if (estruturasContabil != null) {
           
            Iterator it = estruturasContabil.iterator();
            while(it.hasNext()){
                ConfigExecFinanCef estruturaContabil = (ConfigExecFinanCef) it.next();
                if(estrutura.length() > 0)
                    estrutura += " ";
                //estrutura += Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef().toString() + mes + ano + verSistema);               
                //estrutura += Pagina.getParamStr(request, "e" + estruturaContabil.getCodCef().toString() + String.valueOf(versao.getCodCsefv()));
                estrutura += request.getParameterValues("e" + estruturaContabil.getCodCef().toString() + String.valueOf(versao.getCodCsefv()))[iteracao - 1];
            }
            /*
             * Por causa destes ifs neste m�todo os valores da Estrutura n�o s�o perdidos na altera��o. Motivo: na tela de alterar
             * conta todos os campos, com a exce��o do Acumulado est�o desabilitados e por isso n�o s�o enviados por request.
             * Quando fa�o essa compara��o, ao verificar que estes campos est�o vazios, mantenho os valores existentes originalmente
View Full Code Here

TOP

Related Classes of ecar.pojo.ConfigExecFinanCef

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.