__manifest__.py 698 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Generic - Accounting',
  5. 'version': '1.1',
  6. 'category': 'Accounting/Localizations/Account Charts',
  7. 'description': """
  8. This is the base module to manage the generic accounting chart in Odoo.
  9. ==============================================================================
  10. Install some generic chart of accounts.
  11. """,
  12. 'depends': [
  13. 'account',
  14. ],
  15. 'data': [
  16. 'data/l10n_generic_coa.xml',
  17. 'data/account.account.template.csv',
  18. 'data/l10n_generic_coa_post.xml',
  19. ],
  20. 'uninstall_hook': 'uninstall_hook',
  21. 'license': 'LGPL-3',
  22. }