Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Error Access when implement custom field on inherited view res.users

Subscriure's

Get notified when there's activity on this post

This question has been flagged
res.usersodooV17OdooV17
1 Respondre
3001 Vistes
Avatar
Aji Ananta

I make field custom type binary (x_signature) to model res.users, and i try to add this custom field to view. When i implement this, when user click My Profile get Access Error. Its solved if i grant user access to Employees both administrator/officer. but i don't want it. i want still implement custom field on inherited view without give grant access Employees and not access error


Inherited view: res.users.preferences.form.inherit

<data>
    <xpath expr="//field[@name='employee_type']" position="after">
        <field name="x_signature" widget="image"/>
    </xpath>
</data>

Access Error

Access Error

Close

The requested operation can not be completed due to security restrictions. Document type: User (res.users) Operation: read User: 14 Fields: - barcode (allowed for groups 'Employees / Officer: Manage all employees') - birthday (allowed for groups 'Employees / Officer: Manage all employees') - certificate (allowed for groups 'Employees / Officer: Manage all employees') - children (allowed for groups 'Employees / Officer: Manage all employees') - country_of_birth (allowed for groups 'Employees / Officer: Manage all employees') - emergency_contact (allowed for groups 'Employees / Officer: Manage all employees') - emergency_phone (allowed for groups 'Employees / Officer: Manage all employees') - employee_bank_account_id (allowed for groups 'Employees / Officer: Manage all employees')

... ...

...

0
Avatar
Descartar
Avatar
Gracious Joseph
Best Answer

The Access Error occurs because the res.users model and its inherited fields (such as fields added by the Employees module) require specific access rights that your users do not have. When you add a custom field (x_signature) to the res.users model, any reference to that field in the res.users view triggers access checks for related fields as well. In this case, fields inherited from hr.employee (e.g., barcode, birthday) are restricted to users with specific Employee-related permissions.

Here’s how you can resolve this without granting additional access rights to the Employees module:

Solution 1: Use a Separate Model for the Custom Field

Instead of adding the custom field (x_signature) directly to res.users, create a new model and link it to res.users. This isolates your custom field from access rules defined for the Employees module.

  1. Create a New Model: Define a new model (res.user.signature) with a Many2One relation to res.users:
    pythonCopy codefrom odoo import models, fields
    
    class ResUserSignature(models.Model):
        _name = 'res.user.signature'
        _description = 'User Signature'
    
        user_id = fields.Many2one('res.users', string="User", required=True, ondelete='cascade')
        signature = fields.Binary(string="Signature")
    
  2. Add the Field to the View: Extend the res.users view to include the signature field from the new model:
    xmlCopy code<record id="view_res_users_signature" model="ir.ui.view">
        <field name="name">res.users.signature.form.inherit</field>
        <field name="model">res.users</field>
        <field name="inherit_id" ref="base.view_users_form" />
        <field name="arch" type="xml">
            <xpath expr="//field[@name='employee_type']" position="after">
                <field name="user_signature_ids.signature" widget="image"/>
            </xpath>
        </field>
    </record>
    
    • Ensure you add a computed or related field in res.users to link the signature:
      pythonCopy codeclass ResUsers(models.Model):
          _inherit = 'res.users'
      
          user_signature_ids = fields.One2many(
              'res.user.signature', 'user_id', string="Signatures"
          )
      
  3. Test Access Rights: This approach isolates the x_signature field, and users will not encounter access errors since you’re no longer inheriting restricted fields from hr.employee.

Solution 2: Adjust Field Access Control

If you need to keep the x_signature field on the res.users model, explicitly set its access rights to make it accessible for users without permissions to the Employees module.

  1. Grant Access to the Custom Field: Add a record rule or modify field-level security for x_signature:
    pythonCopy codefrom odoo import models, fields
    
    class ResUsers(models.Model):
        _inherit = 'res.users'
    
        x_signature = fields.Binary(string="Signature", groups="base.group_user")
    
    • The groups="base.group_user" ensures that all regular users can access this field.
  2. Ensure the Field is Readable by All Users:
    • If the default security on res.users restricts access to fields such as barcode or birthday, ensure your custom field doesn’t trigger access checks for restricted fields. Use sudo() in your Python code if necessary when reading or writing the field.

Solution 3: Use Computed or Related Fields

If the custom field is related to hr.employee but needs to be accessible in res.users, use a computed field that respects user permissions.

  1. Add a Computed Field: Define the x_signature field as a computed field:
    pythonCopy codeclass ResUsers(models.Model):
        _inherit = 'res.users'
    
        x_signature = fields.Binary(string="Signature", compute="_compute_signature")
    
        def _compute_signature(self):
            for user in self:
                if user.employee_id:
                    user.x_signature = user.employee_id.sudo().x_signature
                else:
                    user.x_signature = False
    
  2. Test Access: Using sudo() ensures that the computation bypasses the restrictive access rules for employee_id fields, while users can still view the field on the form.

Solution 4: Adjust the Record Rule for res.users

If you prefer to adjust access rules directly:

  1. Relax the Record Rules: Identify the restrictive record rules for res.users (related to the Employees module) and customize them. For example, you might find rules like this:
    xmlCopy code<record id="hr_employee_rule_users" model="ir.rule">
        <field name="name">Employees: User Read Access</field>
        <field name="model_id" ref="base.model_res_users" />
        <field name="groups" eval="[(4, ref('hr.group_hr_user'))]" />
        <field name="domain_force">['|', ('id', '=', user.id), ('employee_ids', '!=', False)]</field>
    </record>
    
    • Modify or disable the restrictive rule, but note that this is not recommended as it might introduce unintended side effects.

Conclusion

The best solution depends on your specific use case:

  • Use Solution 1 if you want a clean separation of concerns (best practice).
  • Use Solution 2 if you want to simplify and directly expose the custom field.
  • Use Solution 3 if the field is related to hr.employee but should respect access rights.

1
Avatar
Descartar
Enjoying the discussion? Don't just read, join in!

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

Registrar-se
Related Posts Respostes Vistes Activitat
disable edit on sale order
sale.order odooV17 OdooV17
Avatar
Avatar
Avatar
3
d’oct. 25
668
Easypost default package
odooV17
Avatar
Avatar
1
de set. 25
1123
Adding a Button in POS
odooV17
Avatar
Avatar
1
de gen. 25
2505
How to Restrict Default CRM Access for All Users in Odoo 17 and Assign Permissions Selectively
odooV17
Avatar
Avatar
1
de nov. 24
2942
Purchase order confirmation data display without time Solved
odooV17
Avatar
Avatar
Avatar
2
de set. 24
2400
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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