mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
27 lines
914 B
XML
27 lines
914 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2023 Dixmit
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="account_move_form_view">
|
|
<field name="name">account.move.form (in account_reconcile_oca)</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form" />
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button
|
|
type="action"
|
|
name="%(account_reconcile_oca.action_bank_statement_line_move_view_reconcile)s"
|
|
string="Bank reconcile"
|
|
class="btn btn-primary"
|
|
icon="fa-list"
|
|
invisible="statement_line_id == False"
|
|
/>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|