Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Get current user role

Subscribe

Get notified when there's activity on this post

This question has been flagged
viewsuserrolesodoo-8
1 Reply
11293 Views
Avatar
Alejandro Perez Cosio

Hello all,

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

Best regards
Alejandro

1
Avatar
Discard
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
Discard
Alejandro Perez Cosio
Author

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
Author
...
Alejandro Perez Cosio
Author

"..."

Alejandro Perez Cosio
Author

(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
Author

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
Author

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
Author

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
Author

<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
Author

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!

Sign up
Related Posts Replies Views Activity
User can`t accses his own profile
views user employee accessrules accessrights
Avatar
Avatar
Avatar
Avatar
3
Feb 23
5862
Open form with current user record Solved
partner views form user current
Avatar
Avatar
2
Sep 21
10729
How do I achieve that users can only see and edit their own attendance? Solved
views user attendance rules permissions
Avatar
Avatar
2
May 19
6392
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
Feb 18
4901
How to hide the search view for a user group?
views user search hide group
Avatar
0
May 15
6150
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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