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

In v6.1 \addons\base\res\res_partner_view.xml, around line 345

<field colspan="4" mode="form,tree" name="address" nolabel="1" select="1" height="260">

this code display form view of contact(address) in the partner view, I want to change the mode sequence to:

mode="tree,form"

to list contact tree view first. How to do this by inheriting views in a custom module? Thank you very much.

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

May be you changed in wrong directory. or you forgot to refresh the server and that module

I done this thing by changing in this directory v6.1/server/openerp/addons/base/res/res_partner_view.xml

Line no 345

<field colspan="4" mode="tree,form" name="address" nolabel="1" select="1" height="260">

It works for me

image description

Don't Forgot to restart server and upgrade that module

For inherited view Write this in your inherited view

                <field name="address" position="attributes">
                    <attribute name="mode">tree,form</attribute>
                </field>

Hope This will help :D

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

This changs the source code.But I want to do it in a custom module by inheriting the view so that everytime i update the source, my custom module can take care of these two view modes resorted.

see in answer :D

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 15
3699
10
thg 3 23
40015
5
thg 1 20
11300
2
thg 3 15
8348
1
thg 5 25
1564