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

Issue with Locating groups_id Field in base.view_users_form for Odoo 17 and 18

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
odooodoo 17Odoo 18
1 Beantwoorden
3234 Weergaven
Avatar
red moon

Hello,

I am encountering a persistent validation error while trying to customize the res.users form view in my custom module for Odoo 17 and 18. The error message is:

Validation Error
Error while parsing or validating view:
Element '<xpath expr="//field[@name='groups_id']">' cannot be located in parent view

Details:

  • I am attempting to inherit the base.view_users_form view to manage user types (e.g., Seller, Customer) for each user, specifically within the Access Rights tab of the user form. My goal is to ensure that each user has only one user type per page, avoiding the "The user cannot have more than one user types" error.
  • The XPath expression //field[@name='groups_id'] is intended to target the existing groups_id field to customize the selection of user types, but it fails to locate it in the parent view.


Parent View Structure (base.view_users_form):

The groups_id field is located within <page name="access_rights"> in the notebook, as shown below:



  • <page name="access_rights" string="Access Rights">
        <group string="Multi Companies" invisible="companies_count <= 1">
            <field string="Allowed Companies" name="company_ids" widget="many2many_tags" options="{'no_create': True, 'color_field': 'color'}"/>
            <field string="Default Company" name="company_id" context="{'user_preference': 0}"/>
            <field string="Companies count" name="companies_count" invisible="1"/>
        </group>
        <field name="groups_id"/>
    </page>
  • Despite this, the XPath fails, suggesting the field might not be directly accessible or its context has changed in Odoo 17/18.
  • Attempts Made:
    • Used //page[@name='access_rights']/field[@name='groups_id'] and //page[@name='access_rights'] to target the field, but the error persists.
    • Disabled manual group selection in the upper User types? section by setting invisible="1" on groups_id, but the issue remains when saving the form, especially when switching between user types per user page.

Custom View Code:

<record id="view_users_form_inherit_seller" model="ir.ui.view">
    <field name="name">res.users.form.inherit.seller</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='groups_id']" position="attributes">
            <attribute name="invisible">1</attribute>
        </xpath>
        <xpath expr="//page[@name='access_rights']" position="inside">
            <group name="user_type_group" string="User Type">
                <field name="groups_id" widget="radio" options="{'horizontal': true}" groups="base.group_system"
                       domain="[('category_id.name', '=', 'User types')]"
                       nolabel="1"/>
                <field name="user_type" widget="selection" options="{'no_create': True}" groups="base.group_system">
                    <option value="customer">Customer</option>
                    <option value="seller">Marketplace Seller</option>
                </field>
            </group>
        </xpath>
    </field>
</record>

Questions:

  1. Has the structure or accessibility of the groups_id field changed in Odoo 17 or 18, making it unavailable for inheritance with the specified XPath to manage user types per user page?
  2. Is there a recommended way to override or extend the groups_id field to enforce a single user type selection per user page without this error?

Any guidance, updated XPath syntax, or confirmation of a potential bug would be greatly appreciated. Thank you!

Any guidance  or updated XPath syntax Thank you!

Odoo Version: 17 and 18​

1
Avatar
Annuleer
Avatar
Christoph Farnleitner
Beste antwoord

base.user_groups_view replaces groups_id

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
Odoo 17 & 18 enhancements
odoo 17 Odoo 18
Avatar
Avatar
1
dec. 24
5455
Migrate database Odoo V17 to V18.
database migration odoo 17 Odoo 18
Avatar
Avatar
1
jan. 25
2696
(!!C-o-p-a!!)¿Cómo comunicarse con Copa Airlines en Panamá?
odoo
Avatar
0
nov. 25
211
How do I go about this error? I am trying to uninstall a module
odoo
Avatar
0
nov. 25
3331
How to Delete a Stale Project Folder?
Odoo 18
Avatar
Avatar
2
okt. 25
608
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