mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
23 lines
834 B
XML
23 lines
834 B
XML
<odoo>
|
|
|
|
<record id="pms_property_form_inherit_po_lines_view" model="ir.ui.view">
|
|
<field name="name">pms.property.form.inherit.po.lines.view</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_open_po_line"
|
|
type="object"
|
|
class="oe_stat_button"
|
|
icon="fa-shopping-cart"
|
|
groups="account.group_account_user"
|
|
>
|
|
<field name="po_line_count" string="PO Line(s)" widget="statinfo" />
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|