forked from OCA/account-reconcile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathres_config_settings_views.xml
31 lines (29 loc) · 1.21 KB
/
res_config_settings_views.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2022 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <[email protected]>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
-->
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.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-xs-12 col-md-6 o_setting_box"
id="account_bank_reconciliation_start"
>
<div class="o_setting_left_pane" />
<div class="o_setting_right_pane">
<label for="account_bank_reconciliation_start" />
<div class="text-muted">
Date from which you started using bank statements in Odoo. Leave empty if you've been using bank statements in Odoo from the start.
</div>
<field name="account_bank_reconciliation_start" />
</div>
</div>
</xpath>
</field>
</record>
</odoo>