Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Get current user role

Subscriure's

Get notified when there's activity on this post

This question has been flagged
viewsuserrolesodoo-8
1 Respondre
11280 Vistes
Avatar
Alejandro Perez Cosio

Hello all,

How to get the current logged user and roles at the xml view?

Best regards
Alejandro

1
Avatar
Descartar
Avatar
Ivan
Best Answer

If by XML view you mean is the view definition in XML, you can use the variable user in domain to get the logged user.  user.group_ids will contain the groups that the user belongs to.

0
Avatar
Descartar
Alejandro Perez Cosio
Autor

Hello Ivan, I would want to get the current user roles in a tree view, so, is it possible to show the groups in a tree field? Something like: ...

Alejandro Perez Cosio
Autor
...
Alejandro Perez Cosio
Autor

"..."

Alejandro Perez Cosio
Autor

(Sorry, it seems I cannot put symbols for major and minor than) [field name="user.group_ids"] [tree] ... [/tree] [/field]

Ivan

Well, no you can't. You can create a function field for that. However, I am quite confused why you want to do that, because usually you don't want (other) user to know what access they have. Also, groups can inherit from other groups, you many need to handle that as well.

Ivan

More on the function field. One of the argument is uid (or user) which is the logged in user. You can browse that ID and then get the group_ids from the browse object.

Alejandro Perez Cosio
Autor

Well, I need the list of roles to make a field invisible for just one role. If the current user has that role he shouldn't be able to see some field. But if the user has also a manager role, he should be able to see that field. E.g: If some user has the role point_of_sale.group_pos_user isn't able to see procurement tab, but if he ALSO has the role purchase.group_purchase_manager, he can see that field.

Ivan

Wouldn't it be easier to create one group, give the access to that group, and let every other groups but the one that you want to make the field invisible inherit from this group? Implementing negative access is more tricky than positive access. Say, if the user belong to that role and also other roles, does it mean that the field is invisible to the user or not?

Ivan

And why don't you just give the access to the purchase.group_purchase_manager instead of making it invisible for point_of_sale.group_pos_user?

Alejandro Perez Cosio
Autor

I would want to do so, but I need that group_purchase_manager OR group_sale_manager OR group_pos_manager OR group_warehouse_manager roles will be able to see that field. As you can see, there are 4 different users (each one with one of these roles) which will be able to see that field, but group_sales_ user OR group_pos_user will not. I couldn't set the groups attribute for the field to allow those roles with an "OR" for each of them, it will show the field if the user has all those roles I described below. So that's why I want to set an "invisible rule" for only some groups.

Ivan

You should be able to set multiple groups for the fields and it will operate under OR operator, like: <field="name" groups="purchase.group_purchase_manager,sale.group_sale_manager,point_of_sales.group_pos_manager,stock.group_warehouse_manager">. Note that the groups need to have a full XML ID (including their module name).

Alejandro Perez Cosio
Autor

Thank you Ivan, but I come to try that, with the same groups you put below, and it only shows me the field 'name' if I assign the role sale.group_sale_manager for the user. The groups list is not working under OR operator.. I think it's only taking the first group as argument. Do you think something like this could work?:

Alejandro Perez Cosio
Autor

<field="name" attrs="{'invisible':[|(purchase.group_purchase_manager,sale.group_sale_manager,point_of_sales.group_pos_manager,stock.group_warehouse_manager}">

Alejandro Perez Cosio
Autor

oh, sorry, it should be something more like this: <field="name" attrs="{'invisible':[(point_of_sales.group_pos_user), '&', '!', (purchase.group_purchase_manager,sale.group_sale_manager,point_of_sales.group_pos_manager,stock.group_warehouse_manager)}"> I will try this, but I think it will not work since those objects are not part of the model. if I could use the domain with something like 'invisible': [(uid.groups, 'in', 'point_of_sale.group_pos_user, .....')] and so on, it would be the best for me.. That's why I need the user roles at my view..

Ivan

point_of_sale.group_pos_user, etc are XML IDs you cannot use it directly using 'in' comparison operator. It need to be translated to database ID first - something that I don't know how to do within attrs. On the groups attribute, we have been using that to control the access to the field. Not sure what prevented your instance from doing so (also sale.group_sale_manager is not the first group in the list that I've given for example). Another trick that you can try is to create a new group, give the access to this field to that new group, and let purchase.group_purchase_manager, sale.group_sale_manager, point_of_sales.group_pos_manager, stock.group_warehouse_manager groups inherits from this new group.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
User can`t accses his own profile
views user employee accessrules accessrights
Avatar
Avatar
Avatar
Avatar
3
de febr. 23
5859
Open form with current user record Solved
partner views form user current
Avatar
Avatar
2
de set. 21
10708
How do I achieve that users can only see and edit their own attendance? Solved
views user attendance rules permissions
Avatar
Avatar
2
de maig 19
6381
Odoo version 10: Is it possible to allow users to see sales report of specific shop only?
creation user multicompany roles 10
Avatar
Avatar
1
de febr. 18
4891
How to hide the search view for a user group?
views user search hide group
Avatar
0
de maig 15
6136
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

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