Hello, I'm still new in odoo 10.
I was trying to add a button beside Print button and Cancel button in a wizard of PDF Reports (submenus).
But it doesn't show up.
Here's my code:
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="account_common_report_view" model="ir.ui.view">
<field name="name">Common Report</field>
<field name="model">account.common.report</field>
<field name="inherit_id" ref="account.account_common_report_view" />
<field name="arch" type="xml">
<xpath expr="//footer" position="inside">
<button name="export_to_xls" string="Export to .xls" type="object" class="oe_link"/>
</xpath>
</field>
</record>
</odoo>