Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Artificial Intelligence
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Property Management
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Hide "My Profile" menu from specific users in Odoo 17

Odoberať

Get notified when there's activity on this post

This question has been flagged
settingsdashboardaccess_rules
2 Replies
728 Zobrazenia
Avatar
Abdallah Mahmoud

Hello everyone,

I am working with Odoo 17 and I would like to know if it is possible to hide the "My Profile" menu (from the user dropdown in the top-right corner) for specific users.

My goal is to prevent certain users from accessing their profile from this menu.

I have noticed that the view used when opening "My Profile" from the top menu is different from the one used when accessing the user form from the Settings menu, even though both are based on the same model (res.users).

So my questions are:

  • Is there a way to hide or restrict access to the "My Profile" menu for specific users?
  • Why does Odoo use a different view in this case?
  • What would be the best approach to control this behavior (security rules, view customization, or overriding the action)?

Any guidance would be appreciated.

Thank you!

0
Avatar
Zrušiť
Codesphere Tech

Hello,
You can patch the UserMenu and remove items based on condition.

You can refer this free app: https://apps.odoo.com/apps/modules/17.0/cst_hide_user_submenus
Hope this helps
Thanks

Avatar
Jainesh Shah(Aktiv Software)
Best Answer

Hello Abdallah Mahmoud,


In Odoo 17, the "My Profile" / Preferences menu (top-right user dropdown) is handled by the frontend (OWL) and not purely by backend views or record rules. That’s why controlling it requires a different approach.


✅ Answers to Your Questions

1. Is it possible to hide "My Profile" for specific users?

Yes, it is possible — but not using standard XML views or record rules.

You need to patch the UserMenu (OWL component) and control visibility using a security group.

2. Why does Odoo use a different view?

Although both use the res.users model:

  • Top-right menu (Preferences / My Profile) → triggered via frontend JS (OWL component)
  • Settings → Users → standard backend form view (XML)

So the difference comes from:

  • Frontend-driven action vs backend action
  • Different context and rendering layers
3. Best approach to control this?

The recommended approach is:

  • Create a security group
  • Patch the UserMenu component
  • Hide menu items conditionally based on user group

💡 Working Solution

🔹 Step 1: Create Security Group
<record id="group_hide_user_menu" model="res.groups">
    <field name="name">Hide User Menu Items</field>
    <field name="category_id" ref="base.module_category_hidden"/>
</record>
🔹 Step 2: Patch UserMenu (JavaScript)

📁 your_module/static/src/js/user_menu_patch.js

/** @odoo-module **/

import { UserMenu } from "@web/webclient/user_menu/user_menu";
import { patch } from "@web/core/utils/patch";
import { onWillStart } from "@odoo/owl";

const HIDDEN_IDS = [
    "settings",   // Preferences (My Profile)
];

const RESTRICT_GROUP = "your_module.group_hide_user_menu";

patch(UserMenu.prototype, {
    setup() {
        super.setup(...arguments);
        this.hideMenuItems = false;

        onWillStart(async () => {
            this.hideMenuItems = await this.user.hasGroup(RESTRICT_GROUP);
        });
    },

    getElements() {
        const elements = super.getElements(...arguments);
        if (this.hideMenuItems) {
            return elements.filter((el) => {
                if (el.type === "separator") return false;
                return !HIDDEN_IDS.includes(el.id);
            });
        }
        return elements;
    },
});
🔹 Step 3: Load the JS

Make sure to load this JS file in backend assets (web.assets_backend) of your module.



If you have any questions, feel free to reach out.

Hope this helps!

 

Thanks and Regards,

Email: odoo@aktivsoftware.com

0
Avatar
Zrušiť
Avatar
Zehntech Technologies Inc.
Best Answer

Hello, 

In standard Odoo 17, there is no direct configuration to hide the “My Profile” menu for specific users, as it is part of the core user dropdown and accessible to all logged-in users by default.

However, you can achieve this through customization:

  • UI Customization (JS/XML): Hide the menu item based on user groups.
  • Access Control: Restrict write access on res.users to prevent users from modifying their own profile (even if they access it).
  • Action/View Override: Customize the action linked to “My Profile” to control behavior or redirect access.

Regarding your observation — Odoo uses a different view for “My Profile” to provide a simplified, user-friendly interface compared to the full user form available in Settings.

The best approach typically combines UI hiding (for better UX) and access rights (for security enforcement).

Hope this works for you! If you need any help implementing this or want a more optimized approach, feel free to reach out for further discussion

Regards,

Zehntech Technologies Inc.

santosh.sekwadia@zehntech.com

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Odoo14 accounting advisor cannot update currency
settings permissions access_rules v14
Avatar
0
okt 21
3615
USUARIO DE LECTURA - ODOO
settings
Avatar
Avatar
Avatar
3
apr 26
2133
Fiscal localizations
settings
Avatar
Avatar
2
apr 25
12476
Where is the "Translated Terms" Menu in Odoo 16? Solved
settings
Avatar
Avatar
Avatar
Avatar
Avatar
5
mar 25
23601
Get Blanked after define simple dashboard
dashboard
Avatar
Avatar
1
aug 24
3533
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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