Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
6691 Widoki

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.

Awatar
Odrzuć
Najlepsza odpowiedź

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

Awatar
Odrzuć
Autor

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

Powiązane posty Odpowiedzi Widoki Czynność
0
mar 15
3697
10
mar 23
40010
5
sty 20
11300
2
mar 15
8348
1
maj 25
1563