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
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • 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 Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • 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
  • Help

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
Purchase RFQ odoo-17 odoo18 purchaseordermodule
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
Purchase RFQ odoo-17 odoo18 purchaseordermodule
About this forum
  1. Purchases
  2. Fórum

Configuring Access Rights

Odoberať

Get notified when there's activity on this post

This question has been flagged
2 Replies
2635 Zobrazenia
Avatar
Jebel E Nur Labiba

idk if its in any of the video but is there a way to restrict the access of certain categories to only that department? for example, the finance people can only access the finance category in the purchase app/product app? not with filters, but they can only access the data they need for their department? 

0
Avatar
Zrušiť
Avatar
Dieuladonné Kihdze
Best Answer

Yes, Odoo supports this kind of access restriction, but it requires the use of record rules and security groups, not just filters.

Restrict access so that users in a department (e.g. Finance) can only see products or purchase categories relevant to them — for example, only products in the "Finance" category.

How to do it (technical overview):

1. Create a security group per department (if not already existing):

Go to Settings → Users & Companies → Groups

  • Create group: e.g., Finance Access
  • Assign it to finance users

2. Tag or classify your products/categories:

Use a custom field or existing category to mark records as "Finance", "IT", etc.

  • Example: Add a Many2one field on product.template called department_id that links to a Department model
  • Or use existing categ_id (Product Category) and name them accordingly

3. Define a record rule:

Go to Settings → Technical → Security → Record Rules

Create a rule for the group Finance Access, and apply it to product.template or product.category.

✅ Example domain:

python

CopyEdit

[('categ_id.name', 'ilike', 'Finance')]

Or if you added a department_id field:

python

CopyEdit

[('department_id.name', '=', 'Finance')]

  • Apply to Read, Write, Create, Delete as needed.
  • Scope: product.template, purchase.order, etc.

Hope this will help you!

0
Avatar
Zrušiť
Avatar
Miriam Melisa Canchari Campos
Best Answer

Yes, you can do this in Odoo using Record Rules and Security Groups, not just filters.

✅ Steps:

  1. Create a security group for the department (e.g., Finance).
  2. Assign users from that department to the group.
  3. Create a record rule on product.category like:

    python

    CopiarEditar

    [('name', 'ilike', 'Finance')]

    Or use a custom field like allowed_group_ids if needed.
  4. Apply the rule only to the Finance group.
  5. (Optional) Add a similar rule to product.template to restrict products by category.

🔒 This way, Finance users will only see their categories/products, not others — it's a real access restriction, not just a UI filter.

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
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 ภาษาไทย 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