Files
account-financial-tools/currency_rate_update/__manifest__.py
Alexis de Lattre 1017ce3b4c Update to latest OCA conventions
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
2016-12-05 22:08:52 +01:00

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
}