22 lines
711 B
XML
22 lines
711 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
Copyright 2022 Akretion France (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
<odoo>
|
|
|
|
<record id="view_currency_form" model="ir.ui.view">
|
|
<field name="model">res.currency</field>
|
|
<field name="inherit_id" ref="base.view_currency_form" />
|
|
<field name="arch" type="xml">
|
|
<sheet position="inside">
|
|
<group name="cash_units" string="Cash Units">
|
|
<field name="cash_unit_ids" nolabel="1" colspan="2" />
|
|
</group>
|
|
</sheet>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|