how to Inherit the product form view
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
3
Odpowiedzi
28910
Widoki
how to Inherit the product form view
The following can be used to inherit the product form view.
<record id="product_normal_form_view1" model="ir.ui.view">
<field name="name">product.product.form1</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view" />
<field name="type">form</field>
<field name="arch" type="xml">
<!-- CUSTOMIZATIONS -->
</field>
</record>
You need to get OpenERP guide for Developers
this in you python code i think should work fine
class product_product(osv.osv):
_name = 'product.product'
_inherit = 'product.product'
_columns = {
'your_field': fields.char('Your Field Name',size=50,select=True),
'your_field_2': fields.date('Your Field 2 Name', size=50, required=False),
product_product()
this code in your xml should do it
<record model="ir.ui.view" id="view_product_product_form">
<field name="name">product.product.form</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="type">form</field>
<field name="arch" type="xml">
<field name="name" position="after">
<field name="your_field" select="0"/>
</field>
<field name="default_code" position="replace">
<field name="your_field_2" />
</field>
</field>
</record>
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
How to inherit data file in Odoo?
Rozwiązane
|
|
2
maj 23
|
4628 | |
|
2
mar 15
|
8106 | ||
|
2
cze 25
|
1530 | ||
|
0
mar 25
|
1377 | ||
|
0
lut 25
|
1076 |
Inheritance in model and view: https://learnopenerp.blogspot.com/2018/01/inheritance-in-models-and-views.html