* @throws ECARException
*/
public String getLabelFuncaoMetasIndicadores( EstruturaEtt estrutura )
throws ECARException
{
FuncaoFun funcao = new FuncaoFun( );
funcao.setNomeFun( FuncaoDao.NOME_FUNCAO_METAS_INDICADORES );
List pesquisa = new FuncaoDao( request ).pesquisar( funcao,
new String[] { "nomeFun", "asc" } );
FuncaoFun f = (FuncaoFun) pesquisa.iterator( ).next( );
try
{
return getLabelFuncao( estrutura,
f.getCodFun( ) ).getLabelEttf( );
} catch ( Exception e )
{
this.logger.error( e );
if ( funcao.getLabelPadraoFun( ) != null )
{
return f.getLabelPadraoFun( );
} else{
return f.getNomeFun( );
}
}
}