__manifest__.py 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Module programed and financed by:
  4. # Vauxoo, C.A. (<http://vauxoo.com>).
  5. # Our Community team mantain this module:
  6. # https://launchpad.net/~openerp-venezuela
  7. {
  8. 'name' : 'Venezuela - Accounting',
  9. 'author': ['Odoo S.A.', 'Vauxoo'],
  10. 'category': 'Accounting/Localizations/Account Charts',
  11. 'description':
  12. """
  13. Chart of Account for Venezuela.
  14. ===============================
  15. Venezuela doesn't have any chart of account by law, but the default
  16. proposed in Odoo should comply with some Accepted best practices in Venezuela,
  17. this plan comply with this practices.
  18. This module has been tested as base for more of 1000 companies, because
  19. it is based in a mixtures of most common software in the Venezuelan
  20. market what will allow for sure to accountants feel them first steps with
  21. Odoo more comfortable.
  22. This module doesn't pretend be the total localization for Venezuela,
  23. but it will help you to start really quickly with Odoo in this country.
  24. This module give you.
  25. ---------------------
  26. - Basic taxes for Venezuela.
  27. - Have basic data to run tests with community localization.
  28. - Start a company from 0 if your needs are basic from an accounting PoV.
  29. We recomend use of account_anglo_saxon if you want valued your
  30. stocks as Venezuela does with out invoices.
  31. If you install this module, and select Custom chart a basic chart will be proposed,
  32. but you will need set manually account defaults for taxes.
  33. """,
  34. 'depends': ['account',
  35. ],
  36. 'data': [
  37. 'data/l10n_ve_chart_data.xml',
  38. 'data/account.account.template.csv',
  39. 'data/l10n_ve_chart_post_data.xml',
  40. 'data/account_tax_group_data.xml',
  41. 'data/account_tax_data.xml',
  42. 'data/account_chart_template_data.xml'
  43. ],
  44. 'demo': [
  45. 'demo/demo_company.xml',
  46. ],
  47. 'license': 'LGPL-3',
  48. }