Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
4 Trả lời
11396 Lượt xem

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

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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>

Ảnh đại diện
Huỷ bỏ
Tác giả

Thanks a lot, it work.

Tác giả

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 ?

Tác giả Câu trả lời hay nhất

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>

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
4
thg 7 23
2808
1
thg 1 22
4440
1
thg 10 16
4462
1
thg 9 15
11156
1
thg 2 25
11011