Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

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

Odoberať

Get notified when there's activity on this post

This question has been flagged
viewsgroup_by
3846 Zobrazenia
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
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Order view after a group by
views group_by orderby
Avatar
Avatar
2
jan 21
6008
Select multiple elements with XPath Solved
views
Avatar
Avatar
Avatar
Avatar
Avatar
5
aug 24
48155
Customize the label of "None" group in a group_by operations
group_by
Avatar
0
sep 25
2433
Filter out (hide) lines in tree component Solved
views
Avatar
Avatar
Avatar
2
apr 24
3428
What are the different types of views available in Odoo? Solved
views
Avatar
Avatar
Avatar
Avatar
3
jún 23
7789
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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