mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Update README Code cleanup: remove @api.one, better error messages, remove call to MOD_NAME which was not defined any more Use account.menu_config_multi_currency as parent menu
24 lines
703 B
Python
24 lines
703 B
Python
# -*- coding: utf-8 -*-
|
|
# © 2008-2016 Camptocamp
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{
|
|
"name": "Currency Rate Update",
|
|
"version": "10.0.1.0.0",
|
|
"author": "Camptocamp,Odoo Community Association (OCA)",
|
|
"website": "http://camptocamp.com",
|
|
"license": "AGPL-3",
|
|
"category": "Financial Management/Configuration",
|
|
"depends": [
|
|
"base",
|
|
"account", # Added to ensure account security groups are present
|
|
],
|
|
"data": [
|
|
"data/cron.xml",
|
|
"views/currency_rate_update.xml",
|
|
"views/account_config_settings.xml",
|
|
"security/rule.xml",
|
|
"security/ir.model.access.csv",
|
|
],
|
|
'installable': True
|
|
}
|