__manifest__.py 843 B

12345678910111213141516171819202122232425262728293031
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Uruguay - Accounting',
  5. 'version': '0.1',
  6. 'author': 'Uruguay l10n Team, Guillem Barba',
  7. 'category': 'Accounting/Localizations/Account Charts',
  8. 'description': """
  9. General Chart of Accounts.
  10. ==========================
  11. Provide Templates for Chart of Accounts, Taxes for Uruguay.
  12. """,
  13. 'depends': ['account'],
  14. 'data': [
  15. 'data/l10n_uy_chart_data.xml',
  16. 'data/account.account.template.csv',
  17. 'data/l10n_uy_chart_post_data.xml',
  18. 'data/account_tax_group_data.xml',
  19. 'data/account_tax_report_data.xml',
  20. 'data/account_tax_data.xml',
  21. 'data/account_chart_template_data.xml',
  22. ],
  23. 'demo': [
  24. 'demo/demo_company.xml',
  25. ],
  26. 'license': 'LGPL-3',
  27. }