Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Access Rights

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
securitysettingsres.partneraccess rightsUsers
2 Replies
13109 Tampilan
Avatar
husam amin

Hello,
I have multi-users (res.partner) ,

I need to give all of them access rights for " but" every user has different access 

Like John has full user/all documents but can't Delete any record in sales,

Ahmad is the Administrator, and Andy has user/all documents "but" only view.

Without affecting other users

0
Avatar
Buang
Avatar
S.A. Methsiri Madusanka Sooriyaarachchi
Jawaban Terbai

To manage different access rights for users in Odoo while ensuring specific permissions for each user or group, you can use Odoo's security groups and record rules. Here's how you can set this up:

Steps to Configure Access Rights:

  1. Create or Modify User Groups:
    • Go to Settings > Users & Companies > Groups.
    • Create new groups or modify existing ones to define different levels of access. For example, you can create groups like "Sales Full Access" and "Sales View Only."
  2. Define Access Control Lists (ACLs):
    • Access Control Lists define what actions users in a group can perform on various models.
    • Go to Settings > Technical > Security > Access Control Lists.
    • Create or modify records to set permissions for each group. For instance, you can set ACLs to allow creating, writing, and reading records but deny deletion for the "Sales Full Access" group.
  3. Set Record Rules:
    • Record rules allow you to define what records users can access based on conditions.
    • Go to Settings > Technical > Security > Record Rules.
    • Create new rules to enforce specific access requirements. For instance, you can create a rule to restrict delete access for sales orders to users in the "Sales Full Access" group.

Example Configuration:

1. Create User Groups:

  • Sales Full Access:
    • Users in this group can perform all actions except deletion in the sales module.
  • Sales View Only:
    • Users in this group can only view sales orders but not create or edit them.
  • Administrator:
    • Users in this group have full access to all modules and records.

2. Define ACLs:

  • For "Sales Full Access":
    • Allow create, write, and read permissions on the sale.order model.
    • Deny delete permissions on the sale.order model.
xmlCopy code
    Sales Full Access
    
    
    
    
    
    

  • For "Sales View Only":
    • Allow read-only permissions on the sale.order model.
xmlCopy code
    Sales View Only
    
    
    
    
    
    

3. Set Record Rules:

  • Prevent Deletion in Sales Orders for "Sales Full Access":
xmlCopy code
    Sales Orders - No Delete
    
    
    [('id', '!=', False)]
    

  • Restrict Sales Orders Access to View Only for "Sales View Only":
xmlCopy code
    Sales Orders - View Only
    
    
    [('id', '!=', False)]
    
    
    
    

Apply the Changes:

  • Update your module with these changes.
  • Restart the Odoo server and update the module to apply the new permissions.

By following these steps, you can control access to specific functionalities in Odoo based on user groups, ensuring that each user has the appropriate level of access according to your requirements.

1
Avatar
Buang
Avatar
Liza Meleshkevich
Jawaban Terbai

I see there’s already a good answer above explaining how to manage different access rights for users in Odoo.

In my turn, I’d recommend reading a good guide on the relationship between Roles, Groups, Access Rights, Users, and Permissions in Odoo.

There’s also a useful example showing how to set up access rights for a new user.

0
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
What is the difference between "Settings" and "Access Rights" ?? Diselesaikan
settings access rights
Avatar
Avatar
Avatar
Avatar
3
Sep 25
6224
Limiting visibility of record in certain modules only
security res.partner
Avatar
Avatar
1
Jan 22
3369
Allow "Write a note" and Send a message to users with no write access (Odoo 13)
security access rights Odoo13
Avatar
0
Des 22
3755
How to disable password change for the uses? Diselesaikan
security settings v7
Avatar
Avatar
Avatar
Avatar
4
Jan 19
10891
User rights - configuration page available for users
security access rights odoo9
Avatar
0
Apr 16
3868
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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