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.
 
 
 
 
 

28 lines
1.2 KiB

<?xml version="1.0" encoding = "utf-8"?>
<odoo>
<data>
<!-- loyalty points smart button is shown in customer's form -->
<record id="res_partner_loyalty_form" model="ir.ui.view">
<field name="name">res.partner.form</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//button[@name='action_view_sale_order']"
position="after" create="false">
<button name="action_view_loyalty"
type="object"
class="oe_stat_button"
string="Loyalty Cards"
icon="fa-money">
</button>
<button name="view_claimed_rewards"
type="object"
class="oe_stat_button"
string="Claimed Rewards"
icon="fa-book">
</button>
</xpath>
</field>
</record>
</data>
</odoo>