Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
4 Replies
11429 Tampilan

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
Buang
Jawaban Terbai

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
Buang
Penulis

Thanks a lot, it work.

Penulis

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 ?

Penulis Jawaban Terbai

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
Buang
Post Terkait Replies Tampilan Aktivitas
4
Jul 23
2867
1
Jan 22
4465
1
Okt 16
4491
1
Sep 15
11191
1
Feb 25
11071