0
我試圖使用自定義模塊中的賬戶的常見報告添加按鈕「打印XLS」,我可以能夠直接在account_report_common_view.xml如下添加按鈕,在帳戶共同使用報告自定義模塊添加按鈕 - 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="arch" type="xml">
<form string="Report Options">
<field name="company_id" invisible="1"/>
<group col="4">
<field name="target_move" widget="radio"/>
<field name="date_from"/>
<field name="date_to"/>
</group>
<group col="3">
<field name="journal_ids" widget="many2many_tags" options="{'no_create': True}"/>
</group>
<footer>
<button name="check_report" string="Print" type="object" default_focus="1" class="oe_highlight"/>
or
<button name="check_report_xlsx" string="Print XLS" type="object" default_focus="1" class="oe_highlight"/> -- ADDED HERE
or
<button string="Cancel" class="oe_link" special="cancel" />
</footer>
</form>
</field>
</record>
現在我想在自定義模塊中做到這一點。我如何在新的自定義模塊中添加此按鈕?