hi all,
I would like to add new tab in product definition layout, the way go to layout: Warehouse --> Product --> Create. I tried some research and do similar things in account/product_view.xml to add new tab but not successful. I always got "Invalid XML architecture". Below is my xml code, I defined new xml to modify GUI:
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<record id="product_normal_form_view_conversion" model="ir.ui.view">
<field name="name">product.normal.form.inherit_conversion</field>
<field name="model">product.uom.conversion</field>
<field name="priority">6</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<notebook position="inside">
<page string="Conversion">
</page>
</notebook>
</field>
</record>
</data>
</openerp>
I appreciate any help or suggestion from everyone. Thanks so much.
Duy.