__manifest__.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. "name": "Vietnam - Accounting",
  5. "version": "2.0.1",
  6. "author": "General Solutions",
  7. 'website': 'http://gscom.vn',
  8. 'category': 'Accounting/Localizations/Account Charts',
  9. "description": """
  10. This is the module to manage the accounting chart for Vietnam in Odoo.
  11. =========================================================================
  12. This module applies to companies based in Vietnamese Accounting Standard (VAS)
  13. with Chart of account under Circular No. 200/2014/TT-BTC
  14. **Credits:**
  15. - General Solutions.
  16. - Trobz
  17. """,
  18. "depends": [
  19. "account",
  20. "base_iban",
  21. "l10n_multilang"
  22. ],
  23. "data": [
  24. 'data/l10n_vn_chart_data.xml',
  25. 'data/account.account.template.csv',
  26. 'data/l10n_vn_chart_post_data.xml',
  27. 'data/account_tax_group_data.xml',
  28. 'data/account_tax_report_data.xml',
  29. 'data/account_tax_data.xml',
  30. 'data/account_chart_template_data.xml',
  31. ],
  32. 'demo': [
  33. 'demo/demo_company.xml',
  34. ],
  35. 'post_init_hook': '_post_init_hook',
  36. 'license': 'LGPL-3',
  37. }