__manifest__.py 1.0 KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Indonesian - Accounting',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Localizations/Account Charts',
  7. 'description': """
  8. This is the latest Indonesian Odoo localisation necessary to run Odoo accounting for SMEs with:
  9. =================================================================================================
  10. - generic Indonesian chart of accounts
  11. - tax structure""",
  12. 'author': 'vitraining.com',
  13. 'website': 'http://www.vitraining.com',
  14. 'depends': ['account', 'base_iban', 'base_vat', 'l10n_multilang'],
  15. 'data': [
  16. 'data/account_chart_template_data.xml',
  17. 'data/account.account.template.csv',
  18. 'data/account_chart_template_post_data.xml',
  19. 'data/account_tax_template_data.xml',
  20. 'data/account_chart_template_configuration_data.xml',
  21. ],
  22. 'demo': [
  23. 'demo/demo_company.xml',
  24. ],
  25. 'post_init_hook': 'load_translations',
  26. 'license': 'LGPL-3',
  27. }