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
3594 Widoki

i need form view like the view in base.res_partner_view.xml but i should use different model.so anyone can help me..

Awatar
Odrzuć
Najlepsza odpowiedź

you have to inherit the resource partner class on your new module like this way: _inherit = 'res.partner' and in a columns section you can add the fields which you wanted in your module.

now you have to inherit the resource partner view also in xml like this way.. <record id="view_partner_form" model="ir.ui.view"> <field name="name">res.partner.form</field> <field name="model">res.partner</field> <field name="inherit_id" ref="base.view_partner_form"/> <field name="arch" type="xml">

now you have to give your custom filed position in to this view like this

<field name="email" position="replace"> <field name="gmail"/> <field name="skype"/> </field>

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
View inheritance Rozwiązane
1
mar 20
3323
12
gru 18
34530
1
lip 16
6927
2
mar 15
5770
0
mar 15
3749