mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-25 12:42:04 +02:00
23 lines
916 B
XML
23 lines
916 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="view_account_list">
|
|
<field name="name">account.account.tree (in account_reconcile_oca)</field>
|
|
<field name="model">account.account</field>
|
|
<field name="inherit_id" ref="account.view_account_list" />
|
|
<field name="arch" type="xml">
|
|
<button name="action_read_account" position="after">
|
|
<button
|
|
type="action"
|
|
name="%(account_reconcile_oca.account_account_account_account_reconcile_act_window)s"
|
|
string="Reconcile"
|
|
class="float-end btn-secondary"
|
|
attrs="{'invisible': [('reconcile', '=', False)]}"
|
|
/>
|
|
</button>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|