blob: e91807fd29fab12df672c8df114915291baf8b26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" ?>
<odoo>
<record id="product_template_view_form_inherit_digital" model="ir.ui.view">
<field name="name">product.template.view.form.inherit.digital</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_only_form_view" />
<field name="arch" type="xml">
<div name="button_box" position="inside">
<button class="oe_stat_button" name="action_open_attachments" type="object" icon="fa-file-text-o">
<field string="Digital Files" name="attachment_count" widget="statinfo" />
</button>
</div>
</field>
</record>
<record id="product_product_view_form_inherit_digital" model="ir.ui.view">
<field name="name">product.product.view.form.inherit.digital</field>
<field name="model">product.product</field>
<field name="inherit_id" ref="product.product_normal_form_view"/>
<field name="arch" type="xml">
<div name="button_box" position="inside">
<button class="oe_stat_button" name="action_open_attachments" type="object" icon="fa-file-text-o">
<field string="Digital Files" name="attachment_count" widget="statinfo" />
</button>
</div>
</field>
</record>
</odoo>
|