mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
25 lines
807 B
XML
25 lines
807 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2024 Dixmit
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="res_config_settings_form_view">
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="account.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<block id="bank_cash" position="inside">
|
|
<setting
|
|
id="reconcile_aggregate"
|
|
title="Standard aggregation to use on bank reconciliation"
|
|
string="Reconcile aggregation"
|
|
>
|
|
<field name="reconcile_aggregate" />
|
|
</setting>
|
|
</block>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|