trytond-product_images/product.xml
2013-10-28 13:57:41 +01:00

32 lines
1.2 KiB
XML

<?xml version="1.0"?>
<!-- The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<tryton>
<data>
<!-- ir.attachment -->
<record model="ir.ui.view" id="attachment_view_form">
<field name="model">ir.attachment</field>
<field name="inherit" ref="ir.attachment_view_form"/>
<field name="name">attachment_form</field>
</record>
<record model="ir.ui.view" id="attachment_view_list">
<field name="model">ir.attachment</field>
<field name="inherit" ref="ir.attachment_view_tree"/>
<field name="name">attachment_list</field>
</record>
<!-- product.product -->
<record model="ir.ui.view" id="product_view_form">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_form"/>
<field name="name">product_form</field>
</record>
<record model="ir.ui.view" id="product_view_list">
<field name="model">product.template</field>
<field name="inherit" ref="product.template_view_tree"/>
<field name="name">product_list</field>
</record>
</data>
</tryton>