28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="view_account_payment_form_inherit_double_entry" model="ir.ui.view">
|
|
<field name="name">account.payment.form.inherit.double.entry</field>
|
|
<field name="model">account.payment</field>
|
|
<field name="inherit_id" ref="account.view_account_payment_form"/>
|
|
<field name="arch" type="xml">
|
|
<!-- Add a stat button for the second journal entry in the button_box -->
|
|
<div name="button_box" position="inside">
|
|
<button name="button_open_second_journal_entry"
|
|
type="object"
|
|
class="oe_stat_button"
|
|
icon="fa-bars"
|
|
invisible="not second_move_id"
|
|
groups="account.group_account_user,account.group_account_readonly">
|
|
<div class="o_stat_info">
|
|
<span class="o_stat_text">Second Entry</span>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
<!-- Include the field on the form so the invisible attribute of the button works correctly -->
|
|
<sheet position="inside">
|
|
<field name="second_move_id" invisible="1"/>
|
|
</sheet>
|
|
</field>
|
|
</record>
|
|
</odoo>
|