2
0
account-financial-tools/account_cash_deposit/views/res_currency.xml
Alexis de Lattre 6b8d47f5c0 Add module account_cash_deposit
This module manages cash deposits (cash to bank) and cash orders (bank to cash)
2022-12-12 18:13:15 +01:00

22 lines
699 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" />
</group>
</sheet>
</field>
</record>
</odoo>