LEFT | RIGHT |
(no file at all) | |
| 1 <?xml version="1.0"?> |
| 2 <!-- This file is part of Tryton. The COPYRIGHT file at the top level of |
| 3 this repository contains the full copyright notices and license terms. --> |
| 4 <tryton> |
| 5 <data> |
| 6 |
| 7 <record model="ir.ui.view" id="category_view_form"> |
| 8 <field name="model">product.category</field> |
| 9 <field name="inherit" ref="product.category_view_form"/> |
| 10 <field name="arch" type="xml"> |
| 11 <![CDATA[ |
| 12 <data> |
| 13 <xpath |
| 14 expr="/form/notebook/page[@id='accounting']/field[@name=
'account_stock']" |
| 15 position="after"> |
| 16 <label name="account_cogs"/> |
| 17 <field name="account_cogs"/> |
| 18 </xpath> |
| 19 </data> |
| 20 ]]> |
| 21 </field> |
| 22 </record> |
| 23 |
| 24 <record model="ir.ui.view" id="template_view_form"> |
| 25 <field name="model">product.template</field> |
| 26 <field name="inherit" ref="product.template_view_form"/> |
| 27 <field name="arch" type="xml"> |
| 28 <![CDATA[ |
| 29 <data> |
| 30 <xpath |
| 31 expr="/form/notebook/page[@id='accounting']/field[@name=
'account_stock']" |
| 32 position="after"> |
| 33 <label name="account_cogs"/> |
| 34 <field name="account_cogs"/> |
| 35 </xpath> |
| 36 </data> |
| 37 ]]> |
| 38 </field> |
| 39 </record> |
| 40 |
| 41 </data> |
| 42 </tryton> |
LEFT | RIGHT |