コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
6683 ビュー

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.

アバター
破棄
最善の回答

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

アバター
破棄
著作者

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

関連投稿 返信 ビュー 活動
0
3月 15
3691
10
3月 23
40007
5
1月 20
11297
2
3月 15
8348
1
5月 25
1558