Files
pms/pms_account_asset/views/pms_property.xml
2022-02-04 08:53:37 -06:00

23 lines
791 B
XML

<odoo>
<record id="view_pms_property_form" model="ir.ui.view">
<field name="name">pms.property.form</field>
<field name="model">pms.property</field>
<field name="inherit_id" ref="pms_base.view_pms_property_form" />
<field name="arch" type="xml">
<xpath expr="//div[@name='button_box']" position="inside">
<button
name="action_view_assets"
type="object"
class="oe_stat_button"
icon="fa-pencil-square-o"
groups="account.group_account_user"
>
<field name="asset_count" widget="statinfo" string="Assets" />
</button>
</xpath>
</field>
</record>
</odoo>