mirror of
https://github.com/NaN-tic/trytond-product_images.git
synced 2023-12-14 03:23:04 +01:00
26 lines
1,019 B
XML
26 lines
1,019 B
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>
|
|
</data>
|
|
</tryton>
|