summaryrefslogtreecommitdiff
path: root/addons/account_fleet/__manifest__.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/account_fleet/__manifest__.py')
-rw-r--r--addons/account_fleet/__manifest__.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/addons/account_fleet/__manifest__.py b/addons/account_fleet/__manifest__.py
new file mode 100644
index 00000000..1d4a007d
--- /dev/null
+++ b/addons/account_fleet/__manifest__.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+{
+ 'name': 'Accounting/Fleet bridge',
+ 'category': 'Accounting/Accounting',
+ 'summary': 'Manage accounting with fleets',
+ 'description': "",
+ 'version': '1.0',
+ 'depends': ['fleet', 'account'],
+ 'data': [
+ 'data/fleet_service_type_data.xml',
+ 'views/account_move_views.xml',
+ 'views/fleet_vehicle_views.xml',
+ ],
+ 'installable': True,
+ 'auto_install': True,
+ 'application': False,
+ 'license': 'LGPL-3',
+}