32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<!-- Add Send Fax button + smart button to invoice form -->
|
|
<record id="view_account_move_form_inherit_fusion_faxes" model="ir.ui.view">
|
|
<field name="name">account.move.form.inherit.fusion_faxes</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
|
|
<!-- Smart button for fax count -->
|
|
<xpath expr="//div[@name='button_box']" position="inside">
|
|
<button name="action_view_faxes" type="object"
|
|
class="oe_stat_button" icon="fa-fax"
|
|
invisible="x_ff_fax_count == 0">
|
|
<field name="x_ff_fax_count" widget="statinfo" string="Faxes"/>
|
|
</button>
|
|
</xpath>
|
|
|
|
<!-- Send Fax header button -->
|
|
<xpath expr="//header" position="inside">
|
|
<button name="action_send_fax" string="Send Fax"
|
|
type="object" class="btn-secondary"
|
|
icon="fa-fax"
|
|
groups="fusion_faxes.group_fax_user"/>
|
|
</xpath>
|
|
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|