__manifest__.py 512 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Accounting/Fleet bridge',
  5. 'category': 'Accounting/Accounting',
  6. 'summary': 'Manage accounting with fleets',
  7. 'version': '1.0',
  8. 'depends': ['fleet', 'account'],
  9. 'data': [
  10. 'data/fleet_service_type_data.xml',
  11. 'views/account_move_views.xml',
  12. 'views/fleet_vehicle_views.xml',
  13. ],
  14. 'installable': True,
  15. 'auto_install': True,
  16. 'license': 'LGPL-3',
  17. }