Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
4 Antworten
11394 Ansichten

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).

Avatar
Verwerfen
Beste Antwort

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>

Avatar
Verwerfen
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 Beste Antwort

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>

Avatar
Verwerfen
Verknüpfte Beiträge Antworten Ansichten Aktivität
4
Juli 23
2808
1
Jan. 22
4440
1
Okt. 16
4462
1
Sept. 15
11156
1
Feb. 25
11011