__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name' : 'Analytic Accounting',
  5. 'version': '1.1',
  6. 'category': 'Accounting/Accounting',
  7. 'depends' : ['base', 'mail', 'uom'],
  8. 'description': """
  9. Module for defining analytic accounting object.
  10. ===============================================
  11. In Odoo, analytic accounts are linked to general accounts but are treated
  12. totally independently. So, you can enter various different analytic operations
  13. that have no counterpart in the general financial accounts.
  14. """,
  15. 'data': [
  16. 'security/analytic_security.xml',
  17. 'security/ir.model.access.csv',
  18. 'views/analytic_line_views.xml',
  19. 'views/analytic_account_views.xml',
  20. 'views/analytic_plan_views.xml',
  21. 'views/analytic_distribution_model_views.xml',
  22. 'data/analytic_data.xml'
  23. ],
  24. 'demo': [
  25. 'data/analytic_account_demo.xml'
  26. ],
  27. 'assets': {
  28. 'web.assets_backend': [
  29. 'analytic/static/src/components/**/*',
  30. ],
  31. 'web.qunit_suite_tests': [
  32. 'analytic/static/tests/*.js',
  33. ],
  34. },
  35. 'installable': True,
  36. 'license': 'LGPL-3',
  37. }