Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
4 Răspunsuri
11409 Vizualizări

I'm building a module and i wanted to know how we can override the default tree view for a Many2one field just for this module.

In fact, i'm planning to use the model 'res.partner' and i want that the tree view display only the name and not the email and tel. for my Many2one field (it's for store authors for a book and i don't want to display email and tel for editing this field).

Imagine profil
Abandonează
Cel mai bun răspuns

hi Dewilde,

you can use this code for your requirement:


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

<field name="name">res.partner.tree.inherit</field>

<field name="model">res.partner</field>

<field name="inherit_id" ref="base.view_partner_tree" />

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

<xpath expr="//tree[@string='Contacts']/field[@name='email']" position="attributes">

<attribute name="invisible">1</attribute>

</xpath>

<xpath expr="//tree[@string='Contacts']/field[@name='phone']" position="attributes">

<attribute name="invisible">1</attribute>

</xpath>

</field>

</record>

Imagine profil
Abandonează
Autor

Thanks a lot, it work.

Autor

I didn't see that the first time but your solution disable the display of email and tel for all module. Is there a way to hide the email and tel just for one module (he one i create) and conserve for all other modules ?

Autor Cel mai bun răspuns

I finally found a way to overide a view for a Many2one, Many2many field just for one module and save the same display for other module (exemple, I want my Many2many field reference with res.partner to display only the name but save the name, tel., email display for my other modules).

To complete this task we can extend the Many2many field and overide the view inside the field like this :

<field name="author_ids">
    <tree>
	<field name="name" />
    </tree>
</field>

Imagine profil
Abandonează
Related Posts Răspunsuri Vizualizări Activitate
4
iul. 23
2820
1
ian. 22
4451
1
oct. 16
4469
1
sept. 15
11166
1
feb. 25
11025