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

Get current user role

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
viewsuserrolesodoo-8
1 Balas
11308 Tampilan
Avatar
Alejandro Perez Cosio

Hello all,

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

Best regards
Alejandro

1
Avatar
Buang
Avatar
Ivan
Jawaban Terbai

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
Buang
Alejandro Perez Cosio
Penulis

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

"..."

Alejandro Perez Cosio
Penulis

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

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
Penulis

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
Penulis

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
Penulis

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

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.

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
User can`t accses his own profile
views user employee accessrules accessrights
Avatar
Avatar
Avatar
Avatar
3
Feb 23
5869
Open form with current user record Diselesaikan
partner views form user current
Avatar
Avatar
2
Sep 21
10746
How do I achieve that users can only see and edit their own attendance? Diselesaikan
views user attendance rules permissions
Avatar
Avatar
2
Mei 19
6400
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
4906
How to hide the search view for a user group?
views user search hide group
Avatar
0
Mei 15
6169
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