Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

How to get groups of user logged in

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
userinvisiblegroupsloggedodooV8
4 Respostas
27425 Visualizações
Avatar
Jesús Marco

Hello everybody.

    I am trying to obtain the groups which the logged in user belong to; after this what I´m trying to achieve is to compare if the logged in user belongs to a certain group in order to create a boolean flag which later on, I will use un my xml view to conditioned a page to be invisible or not.

I am using odoo 8 and the code I have until now is the following:

'make_invisible':fields.function(get_user, string="Is Invisible")
def get_user(self, cr, uid, ids, context=None): 
    _logger.debug("This is GET_USER method ")
    result = {}
    user = self.pool.get('res.users').browse(cr, uid, user_id, context=context)
    if user.has_group('hr_employee.NewGroup'):
        _logger.debug(":::True:::")
        return False
    else:
        _logger.debug(":::False:::")
        return False

Another question is: with the "has_group" should I use the group name that I wrote through the GUI or the XML ID??

Currently I am getting:

TypeError: get_user() takes at most 5 arguments (7 given)

0
Avatar
Cancelar
Kabeer KB

Define your function like this

` def get_user (self, cr, uid, ids, name, arg, context=None):

//statement

Avatar
Jesús Marco
Autor Melhor resposta

Hi Sehrish, Kabeer thanks for the tips, although I think I´m getting closer, I still can´t make it work, I went coding with method 2 (Sehrish) using it inside a computed field but several exceptions have been occurring:

field:

'make_invisible':fields.function(get_user, string="Is Invisible", readonly=0)

XML:

<field name="make_invisible"/>

First try:

def get_user(self, cr, uid, ids, name, arg, context=None):   
    _logger.debug("This is GET_USER method ") 
    desired_group_name = self.env['res.groups'].search([('name','=','GM')]) 
    is_desired_group = self.env.user.id in desired_group_name.users.ids 
    self.make_visible=is_desired_group

got:

desired_group_name = self.env['res.groups'].search([('name','=','GM')]) 
AttributeError: 'hr.employee' object has no attribute 'env'

Second try: (try to use api.multi to avoid previous error)

@api.multi 
def get_user(self, cr, uid, ids, name, arg, context=None):
    _logger.debug("This is GET_USER method ")
    desired_group_name = self.env['res.groups'].search([('name','=','GM')])
    is_desired_group = self.env.user.id in desired_group_name.users.ids 
    self.make_visible=is_desired_group

got:

File "/opt/odoo/openerp/api.py", line 363, in old_api 
    result = method(recs, *args, **kwargs)
TypeError: get_user() takes at least 6 arguments (4 given)

Third try: (use different function definition with api.multi)

@api.multi 
def get_user(self):
    _logger.debug("This is GET_USER method ")
    desired_group_name = self.env['res.groups'].search([('name','=','GM')])
    is_desired_group = self.env.user.id in desired_group_name.users.ids 
    self.make_visible=is_desired_group

got:

File "/opt/odoo/openerp/api.py", line 709, in __new__  
    self.cr, self.uid, self.context = self.args = (cr, uid, frozendict(context)) 
ValueError: dictionary update sequence element #0 has length 1; 2 is required

Fouth try: (tried to use original function definition with pool.get instead of env)

def get_user(self, cr, uid, ids, name, arg, context=None):  
    _logger.debug("This is GET_USER method ")
    #desired_group_name = self.env['res.groups'].search([('name','=','GM')])
    desired_group_name = self.pool.get('res.groups').search([('name','=','GM')])
    is_desired_group = self.env.user.id in desired_group_name.users.ids 
    self.make_visible=is_desired_group

got:

File "/opt/odoo/openerp/api.py", line 241, in wrapper  
    return old_api(self, *args, **kwargs) 
TypeError: search() takes at least 4 arguments (2 given)

Please help, dont know what else to do and what am I doing wrong!!!

0
Avatar
Cancelar
Avatar
Sehrish
Melhor resposta

How to check login user group. The need of this post is, to sometime we need to visible invisible some filed on the basis of login user group or we want to perform some action on the basis of login user. To do so we need to get login user group. There are two ways

Method 1:

user = self.env['res.users'].sudo().search([('login','=',self.env.user.login)]) 
desired_group_user = self.env['res.groups'].sudo().search([('name','=','desired_group_name')]) 
query = "select gid from res_groups_users_rel where gid ={} and uid={}".format(desired_group_user.id,user.id)
self.env.cr.execute(query) is_desired_group = self.env.cr.fetchone() 
desired_user_gr = self.env['res.groups'].sudo().search([('id','=',is_desired_group)])

Method 2:

desired_group_name = self.env['res.groups'].search([('name','=','desired_group_name')])
is_desired_group = self.env.user.id in desired_group_name.users.ids

For further info about code and description visit: http://learnopenerp.blogspot.com/2017/10/how-to-check-login-user-group-in-odoo.html

This is the answer of your first part of question. If you want to visible invisible fields on some condition read: http://learnopenerp.blogspot.com/2016/10/how-to-visible-and-invisible-fields-in.html

0
Avatar
Cancelar
Sehrish

How to check/find login user group: http://learnopenerp.blogspot.com/2017/10/how-to-check-login-user-group-in-odoo.html

How to visible and invisible fields in odoo: http://learnopenerp.blogspot.com/2016/10/how-to-visible-and-invisible-fields-in.html

Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
how to get the logged user Resolvido
user logged
Avatar
Avatar
Avatar
2
fev. 24
15234
Custom code: Field is restricted to the group(s) base.group_no_one. Resolvido
invisible groups modifier
Avatar
Avatar
1
abr. 25
1909
how to make button available only for the requester ?
invisible context groups
Avatar
Avatar
Avatar
2
nov. 19
3885
Automatically filling in field with the user name - Odoo8
user automatic odooV8
Avatar
Avatar
1
jun. 15
3759
set a new menu for specific user
settings user odooV8
Avatar
0
mai. 15
3896
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now