forked from Mapan/odoo17e
20 lines
503 B
Python
20 lines
503 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Live Currency Exchange Rate',
|
|
'version': '1.0',
|
|
'category': 'Accounting/Accounting',
|
|
'description': """Import exchange rates from the Internet.
|
|
""",
|
|
'depends': [
|
|
'account',
|
|
],
|
|
'data': [
|
|
'views/res_config_settings_views.xml',
|
|
'views/service_cron_data.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|