You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
636 B
16 lines
636 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- Inheriting product template view -->
|
|
<record id="product_template_only_form_view" model="ir.ui.view">
|
|
<field name="name">product.template.view.form</field>
|
|
<field name="model">product.template</field>
|
|
<field name="inherit_id" ref="product.product_template_only_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='group_standard_price']" position="inside">
|
|
<field name="is_create_image"/>
|
|
<field name="is_update_image"/>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|