Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Custom functionality with One2many field

Odebírat

Get notified when there's activity on this post

This question has been flagged
one2manyone2many_listv18CommunityEdition
1 Odpovědět
1896 Zobrazení
Avatar
Shreya Doodipala
I want to bring the following custom functionality to my CRM.

I have created a new model called crm.presales.value, which has

lead_id = fields.Many2one('crm.lead', string="Opportunity")
user_id = fields.Many2one('res.users', string="User")
team_id = fields.Many2one('crm.team', string='Presales Team')
value = fields.Float()

among other fields and functions.

I have inherited the crm.lead model to include

presales_ids = fields.One2many('crm.presales.value', 'lead_id', string="Presales")
presales_team_ids = fields.Many2many('crm.team', string="Presales Teams",

compute='_compute_presales_team_ids', store=True)

In my crm.lead form view,

  • I want checkboxes to select presales teams.
  • When a team is selected, I want a separate inline list view to appear (for each team), which allows me to add the user and other required info.
  • When saving the form, if any list is empty I want that team to be unchecked.

How can I implement this dynamically? (using xml or qweb templates)


Odoo v18 Community edition

0
Avatar
Zrušit
Avatar
Piyush H
Nejlepší odpověď

Dear Shreya,

Here's how to implement your custom presales team functionality without OWL directives:

Solution Approach

We'll use a combination of:

  1. Standard many2many_tags widget for team selection
  2. Conditional visibility for team sections
  3. Onchange methods to handle team toggling
  4. Server-side validation

Implementation Steps

1. Model Enhancements

python

# Add to your crm.lead model
from odoo import api, fields, models

class CrmLead(models.Model):
    _inherit = 'crm.lead'
    
    presales_team_ids = fields.Many2many(
        'crm.team', 
        string="Presales Teams",
        compute='_compute_presales_team_ids',
        store=True
    )
    
    @api.depends('presales_ids.team_id')
    def _compute_presales_team_ids(self):
        for lead in self:
            lead.presales_team_ids = lead.presales_ids.mapped('team_id')
2. Form View Implementation

xml

<record id="view_crm_lead_presales_form" model="ir.ui.view">
    <field name="name">crm.lead.form.presales</field>
    <field name="model">crm.lead</field>
    <field name="inherit_id" ref="crm.view_crm_lead_form"/>
    <field name="arch" type="xml">
        <!-- Add team selection field -->
        <xpath expr="//field[@name='team_id']" position="after">
            <field name="presales_team_ids" widget="many2many_tags"/>
        </xpath>
        
        <!-- Add dynamic sections for each team -->
        <xpath expr="//sheet" position="inside">
            <div class="oe_title">
                <h2>Presales Assignments</h2>
            </div>
            <div t-foreach="record.presales_team_ids.raw_value" t-as="team">
                <group string="Presales Team: {{ team[1] }}" attrs="{'invisible': [('id', '=', False)]}">
                    <field name="presales_ids" context="{'default_team_id': team[0]}">
                        <tree editable="bottom">
                            <field name="user_id"/>
                            <field name="value"/>
                            <field name="team_id" invisible="1"/>
                        </tree>
                    </field>
                </group>
            </div>
        </xpath>
    </field>
</record>
3. Add Validation Logic

python

# Add to your crm.lead model
@api.constrains('presales_ids', 'presales_team_ids')
def _check_presales_teams(self):
    for lead in self:
        # Get teams with no entries
        empty_teams = lead.presales_team_ids - lead.presales_ids.mapped('team_id')
        if empty_teams:
            lead.write({'presales_team_ids': [(3, team.id) for team in empty_teams]})
4. Optional: Add Onchange for Better UX

python

@api.onchange('presales_team_ids')
def _onchange_presales_teams(self):
    # Remove presales entries for deselected teams
    if self.presales_ids:
        to_remove = self.presales_ids.filtered(
            lambda x: x.team_id not in self.presales_team_ids
        )
        if to_remove:
            self.presales_ids = [(3, entry.id) for entry in to_remove]
Key Features of This Implementation
  1. Dynamic Team Sections: Only shows sections for selected teams
  2. Automatic Team Management: Teams are automatically (un)checked based on presales entries
  3. Contextual Defaults: New presales entries automatically get the correct team
  4. Validation: Empty teams are automatically unchecked on save
Limitations in Community Edition

Since OWL directives aren't allowed in XML:

  • We use t-foreach for dynamic sections
  • Visibility is controlled through standard attrs

The UI updates require a save/reload (not fully dynamic)

🚀 Did This Solve Your Problem?

If this answer helped you save time, money, or frustration, consider:

✅ Upvoting (👍) to help others find it faster

✅ Marking as "Best Answer" if it resolved your issue

Your feedback keeps the Odoo community strong! 💪

(Need further customization? Drop a comment—I’m happy to refine the solution!)

-1
Avatar
Zrušit
Shreya Doodipala
Autor

OWL directives are not allowed in XML arch definitions

Piyush H

Check now I have edited my answer

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

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Copy One2many fields information to another model Vyřešeno
one2many one2manyfield v18 CommunityEdition
Avatar
Avatar
Avatar
2
čvn 25
1562
tree view for one2Many not populating
one2many one2many_list
Avatar
Avatar
2
říj 20
3825
how get value from one2many field? Vyřešeno
one2many one2many_list
Avatar
Avatar
1
srp 19
11313
Modify Pivot View
Pivot v18 CommunityEdition
Avatar
Avatar
1
čvn 25
1760
Unable to send email notifications through write
notifications v18 CommunityEdition
Avatar
Avatar
1
čvn 25
1817
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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