Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Access Rights for base field Fiscal Position Field on Partner Record

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
access_rulesbasefieldaccess rights
3 Antwoorden
956 Weergaven
Avatar
Philipp

Hello,

On the Partner record under the Sales & Purchase tab, the field property_account_position_id (Fiscal Position) is currently visible to all users in the Sales and Accounting groups — except those in the Accounting Read-Only group.

I would like to adjust the access as follows:

  • Accounting users (e.g. Accountant, Accounting Manager) → Editable
  • Sales users → Invisible or Read-only

What is the recommended way to configure this behavior (via XML, Studio, or access rules)?

Thank you in advance.

0
Avatar
Annuleer
Avatar
Philipp
Auteur Beste antwoord

Thank you for the answers. Using Odoo Online I believe I cannot edit Python Code but xml? Could you please describe me how to access the code?

0
Avatar
Annuleer
Avatar
D Enterprise
Beste antwoord

Hi,

Odoo's best practice for controlling field visibility/editability per group is via XML view customization — using the groups attribute (to restrict visibility to groups), and attrs for making the field read-only dynamically.

Hide/Make Read-Only for Sales users:

<field name="property_account_position_id"

       groups="account.group_account_user,account.group_account_manager"

       attrs="{'readonly': [('groups_id', 'not in', [ref('account.group_account_manager'), ref('account.group_account_user')])]}" />


The field is only shown to users in the Accounting groups via groups attribute.

It is read-only for users who are not in those groups.

Sales users won't see it (if they're not part of accounting groups).

This method keeps the logic clean and group-based, and doesn't require creating custom boolean fields or computed conditions.


i hope it is usefull

0
Avatar
Annuleer
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Beste antwoord

Hi,

Please refer to the code below:

Python

from odoo import models, fields, api

class ResPartner(models.Model):
_inherit = 'res.partner'

is_account_user = fields.Boolean(
string="Is Accounting User",
compute='_compute_is_account_user',
store=False
)

@api.depends_context('uid')
def _compute_is_account_user(self):
for record in self:
user = self.env.user
record.is_account_user = user.has_group('account.group_account_user') or user.has_group('account.group_account_manager')

XML:

<record id="view_partner_form" model="ir.ui.view">
<field name="name">res.partner.view.form</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='property_account_position_id']"
position="before">
<field name="is_account_user" invisible="1"/>
</xpath>
<xpath expr="//field[@name='property_account_position_id']"
position="attributes">
<attribute name="readonly">not is_account_user</attribute>
</xpath>
</field>
</record>

Hope it helps.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
CRM access rights error
access_rules access rights access-right
Avatar
0
jun. 21
3474
[V12] create Group to remove right to modify followers Opgelost
security permissions access_rules access rights 12.
Avatar
Avatar
1
dec. 22
5170
Users cannot login after access rights modification Opgelost
access_rules
Avatar
Avatar
2
jan. 22
4419
How to achieve record-based access control in Odoo 14?
record_rules authorisation access_rules access rights v14
Avatar
Avatar
1
feb. 21
3799
User Access Permissions Opgelost
record_rules user_management access_rules userpermissions access rights
Avatar
Avatar
Avatar
Avatar
Avatar
6
nov. 19
63604
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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