blob: 9653580694cee39ce1f39a4aa8af7006295fd047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="res_currency_form_inherit" model="ir.ui.view">
<field name="name">res.currency.form.inherit</field>
<field name="model">res.currency</field>
<field name="inherit_id" ref="base.view_currency_form"/>
<field name="arch" type="xml">
<xpath expr="//sheet" position="before">
<field name="display_rounding_warning" invisible="1"/>
<div class="alert alert-warning" role="alert" attrs="{'invisible': [('display_rounding_warning', '=', False)]}">
<strong>This currency has already been used to generate accounting entries.</strong> <br/>
Changing its rounding factor now will not change the rounding made on previous entries; possibly causing an inconsistency with the new ones.
</div>
</xpath>
</field>
</record>
</data>
</odoo>
|