Skip to content

Instantly share code, notes, and snippets.

@gil27
Last active August 29, 2015 14:01
Show Gist options
  • Save gil27/4b3cee7057daf435676f to your computer and use it in GitHub Desktop.
Save gil27/4b3cee7057daf435676f to your computer and use it in GitHub Desktop.
Dois métodos, mesmo Gil
module DiretoriosHelper
def diretorio_lista_empresas(usuario)
a= Array.new
if not usuario.cliente.filial?
empresas = usuario.cliente.filiais
a << usuario.cliente
empresas.each do |empresa|
a << empresa
end
a
else
a << usuario.cliente
end
end
def diretorio_lista_empresas(cliente)
([cliente] << cliente.filiais).flatten
end
end
@urieljuliatti
Copy link

Thumbs up! o/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment