I have a new module that depends on crm.lead, and I want to display the fields of the new module in its list view. How can I do this? Currently, it seems to only show the fields from the original module.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
Hi,
Please refer to the code below:
Python
from odoo import models, fields
class CrmLead(models.Model):
_inherit = 'crm.lead'
x_custom_field = fields.Char(string="Custom Field")
# Add Your Custom fields
XML:
<record id="view_crm_lead_tree_custom" model="ir.ui.view">
<field name="name">crm.lead.tree.inherit.custom</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_case_leads_view_tree"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='name']" position="after">
<field name="x_custom_field"/>
</xpath>
</field>
</record>
Hope it helps.
To show your custom fields in the crm.lead list view, you need to inherit the tree view and add your fields.
<record id="crm_lead_tree_view_custom" model="ir.ui.view">
<field name="name">crm.lead.tree.view.custom</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_lead_view_tree"/>
<field name="arch" type="xml">
<xpath expr="//tree" position="inside">
<field name="x_custom_field"/>
</xpath>
</field>
</record>
Make sure your model extension correctly adds the new fields:
from odoo import models, fields
class CrmLead(models.Model):
_inherit = 'crm.lead'
x_custom_field = fields.Integer(string="Another Field")
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
0
maj 25
|
667 | ||
|
0
sie 24
|
1003 | ||
|
2
mar 24
|
1264 | ||
CMR - Lead - Oportunidades
Rozwiązane
|
|
1
lip 22
|
2627 | |
|
0
maj 22
|
1629 |