Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

How to Group Records in an Inherited View in Odoo 18 Without Errors?

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
viewsgroup_by
3995 Vues
Avatar
Dani Sanchez

I am trying to better organize my XML code in Odoo 18 by grouping records in a more structured way.

1. Currently, I have multiple fields with the groups attribute, but I want to know if there’s a better way to group permissions by record.


<odoo>

<record id="view_repair_order_list_custom" model="ir.ui.view">

<field name="name">repair.order.list.custom</field>

<field name="model">repair.order</field>

<field name="inherit_id" ref="repair.view_repair_order_tree" />

<field name="arch" type="xml">

<xpath expr="//list" position="attributes">

<attribute name="action">action_open_ticket_with_popup</attribute>

</xpath>


<xpath expr="//list" position="replace">

<list edit="0" string="Repair Orders" decoration-info="state == 'draft'"

create="1" delete="0" expand="1">

<!-- Campos para el grupo Mining con disable-click -->

<field name="name" readonly="1" string="Repair Reference" class="disable-click"

groups="custom_repair_module.group_mining,custom_repair_module.group_micro" />

<field name="schedule_date" string="Scheduled Date" widget="remaining_days"

readonly="1"

class="disable-click" groups="custom_repair_module.group_mining" />

<field name="product_id" string="Product to Repair" readonly="1"

class="disable-click"

groups="custom_repair_module.group_mining,custom_repair_module.group_micro" />

<field name="lot_id" string="Serial Number" readonly="1" class="disable-click"

groups="custom_repair_module.group_mining,custom_repair_module.group_micro" />

<field name="lot_ref" string="Position" readonly="1" class="disable-click"

groups="custom_repair_module.group_mining,custom_repair_module.group_micro" />

<field name="state" class="col-6 text-end disable-click"

widget="label_selection"

readonly="1"

groups="custom_repair_module.group_mining,custom_repair_module.group_micro"

options="{'classes': {

'draft': 'info',

'confirmed': 'light',

'under_repair': 'warning',

'ready_for_rack': 'dark',

'done': 'success',

'cancel': 'danger'

}}" />

<field name="tag_ids" widget="many2many_tags"

options="{'color_field': 'color'}"

class="col-12 text-center disable-click"

groups="custom_repair_module.group_micro" />

<button name="action_open_ticket_with_popup" type="object"

string="Open Ticket"

icon="fa-ticket" class="oe_stat_button w-100% col-12"

groups="custom_repair_module.group_mining"

invisible="state not in ('draft', 'ready_for_rack')" />


<button string="No action available for this state" type="object"

class="disable-click text-muted oe_stat_button w-100% col-12"

groups="custom_repair_module.group_mining"

invisible="state in ('draft', 'ready_for_rack')" />

<button name="action_open_ticket_with_popup" type="object" string="Open Ticket"

icon="fa-ticket" class="oe_stat_button w-100% col-12"

groups="custom_repair_module.group_micro"

invisible="state not in ('confirmed')" />

<button string="No action available for this state" type="object"

class="disable-click text-muted oe_stat_button w-100% col-12"

groups="custom_repair_module.group_micro" invisible="state in ('confirmed')" /> <!--

Campos para otros grupos (sin disable-click) -->

<field name="name" readonly="1" string="Repair Reference"

groups="custom_repair_module.group_noc" />

<field name="schedule_date" string="Scheduled Date" widget="remaining_days"

readonly="1"

groups="custom_repair_module.group_noc" />

<field name="product_id" string="Product to Repair" readonly="1"

groups="custom_repair_module.group_noc" />

<field name="lot_id" string="Serial Number" readonly="1"

groups="custom_repair_module.group_noc" />

<field name="lot_ref" string="Position" readonly="1"

groups="custom_repair_module.group_noc" />

<field name="state" class="col-6 text-end" widget="label_selection"

readonly="1"

groups="custom_repair_module.group_noc"

options="{'classes': {

'draft': 'info',

'confirmed': 'light',

'under_repair': 'warning',

'ready_for_rack': 'dark',

'done': 'success',

'cancel': 'danger'

}}" />

<field name="tag_ids" widget="many2many_tags"

options="{'color_field': 'color'}"

groups="custom_repair_module.group_noc" />

</list>

</xpath>


</field>

</record>


<!-- Reglas de seguridad -->

<!-- Restricción para el grupo Mining -->

<record id="repair_order_rule_mining" model="ir.rule">

<field name="name">Restrict Mining Users</field>

<field name="model_id" ref="repair.model_repair_order" />

<field name="domain_force">[(1, '=', 1)]</field>

<field name="groups" eval="[(4, ref('custom_repair_module.group_mining'))]" />

</record>


<!-- Permiso completo para el grupo NOC -->

<record id="repair_order_rule_noc" model="ir.rule">

<field name="name">Allow NOC Users</field>

<field name="model_id" ref="repair.model_repair_order" />

<field name="domain_force">[(1, '=', 1)]</field>

<field name="groups" eval="[(4, ref('custom_repair_module.group_noc'))]" />

</record>

</odoo>


2. I tried using groups_id inside the <record>, like this:

<field name="groups_id" eval="[(6, 0, [ref('base.group_manager')])]"/>

But I get the following error:

“An inherited view cannot have ‘groups’ defined in the record. Use the ‘groups’ attribute inside the view definition.”


My goal is to group permissions and configurations by record instead of referencing groups multiple times within fields and buttons.


How can I properly structure my code to apply group restrictions in a more organized way and avoid this error?

0
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Order view after a group by
views group_by orderby
Avatar
Avatar
2
janv. 21
6039
Select multiple elements with XPath Résolu
views
Avatar
Avatar
Avatar
Avatar
Avatar
5
août 24
48232
Customize the label of "None" group in a group_by operations
group_by
Avatar
0
sept. 25
2487
Filter out (hide) lines in tree component Résolu
views
Avatar
Avatar
Avatar
2
avr. 24
3498
What are the different types of views available in Odoo? Résolu
views
Avatar
Avatar
Avatar
Avatar
3
juin 23
7958
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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