__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) David Arnold (XOE Solutions).
  4. # Author David Arnold (XOE Solutions), dar@xoe.solutions
  5. # Co-Authors Juan Pablo Aries (devCO), jpa@devco.co
  6. # Hector Ivan Valencia Muñoz (TIX SAS)
  7. # Nhomar Hernandez (Vauxoo)
  8. # Humberto Ochoa (Vauxoo)
  9. {
  10. 'name': 'Colombia - Accounting',
  11. 'version': '0.8',
  12. 'category': 'Accounting/Localizations/Account Charts',
  13. 'description': 'Colombian Accounting and Tax Preconfiguration',
  14. 'author': 'David Arnold (XOE Solutions)',
  15. 'website': 'https://www.odoo.com/colombia',
  16. 'depends': [
  17. 'account',
  18. 'account_debit_note',
  19. 'l10n_latam_base',
  20. ],
  21. 'data': [
  22. 'data/l10n_co_chart_data.xml',
  23. 'data/account.account.template.csv',
  24. 'data/account_chart_template_data.xml',
  25. 'data/account.tax.group.csv',
  26. 'data/account_tax_template.xml',
  27. 'data/account_chart_template_configure_data.xml',
  28. 'data/l10n_latam.identification.type.csv',
  29. ],
  30. 'demo': [
  31. 'demo/demo_company.xml',
  32. ],
  33. 'license': 'LGPL-3',
  34. }