You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

27 lines
1.2 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Agreement View-->
<record id="purchase_recurring_agreement_action" model="ir.actions.act_window">
<field name="type">ir.actions.act_window</field>
<field name="name">Purchase Recurring Agreement</field>
<field name="res_model">purchase.recurring.agreement</field>
<field name="view_mode">tree,form</field>
<field name="context">{'search_default_partner_id': active_id}</field>
</record>
<!-- Agreement Smart Button-->
<record id="res_partner_view_agreement_button" model="ir.ui.view">
<field name="name">res.partner.view.agreement.button</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="priority" eval="20"/>
<field name="arch" type="xml">
<xpath expr="//div[@name='button_box']" position="inside">
<button name="%(purchase_recurring_agreement_action)d"
type="action"
class="oe_stat_button"
icon="fa-file-text-o"
string="Agreements"/>
</xpath>
</field>
</record>
</odoo>