23 lines
774 B
XML
23 lines
774 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="product_template_view_form" model="ir.ui.view">
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_form_view"/>
|
|
<field name="priority" eval="64"/>
|
|
<field name="arch" type="xml">
|
|
<page string="Accounting" position="replace"/>
|
|
<field name="profile_id" position="after">
|
|
<field name="categ_id"/>
|
|
<field name="fiscal_classification_id" widget="selection"/>
|
|
</field>
|
|
<field name="standard_price" position="after">
|
|
<field name="valuation" attrs="{'invisible':[('type', 'in', ('service', 'consu'))]}"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|