mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
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">
|
|
<xpath expr="//div[@id='bank_cash']" position="inside">
|
|
<div
|
|
class="col-12 col-lg-6 o_setting_box"
|
|
id="reconcile_aggregate"
|
|
title="Standard aggregation to use on bank reconciliation"
|
|
>
|
|
<div class="o_setting_left_pane">
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label
|
|
for="reconcile_aggregate"
|
|
string="Reconcile aggregation"
|
|
/>
|
|
<div class="o_setting_container">
|
|
<field name="reconcile_aggregate" />
|
|
</div>
|
|
|
|
<div class="text-muted">
|
|
Standard aggregation to use on bank reconciliation
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|