__manifest__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) 2015 Willow IT Pty Ltd (<http://www.willowit.com.au>).
  4. {
  5. 'name': 'New Zealand - Accounting',
  6. 'version': '1.1',
  7. 'category': 'Accounting/Localizations/Account Charts',
  8. 'description': """
  9. New Zealand Accounting Module
  10. =============================
  11. New Zealand accounting basic charts and localizations.
  12. Also:
  13. - activates a number of regional currencies.
  14. - sets up New Zealand taxes.
  15. """,
  16. 'author': 'Richard deMeester - Willow IT',
  17. 'website': 'http://www.willowit.com',
  18. 'depends': ['account'],
  19. 'data': [
  20. 'data/l10n_nz_chart_data.xml',
  21. 'data/account.account.template.csv',
  22. 'data/account_chart_template_data.xml',
  23. 'data/account.tax.group.csv',
  24. 'data/account_tax_report_data.xml',
  25. 'data/account_tax_template_data.xml',
  26. 'data/account_fiscal_position_tax_template_data.xml',
  27. 'data/account_chart_template_configure_data.xml',
  28. 'data/res_currency_data.xml',
  29. ],
  30. 'demo': [
  31. 'demo/demo_company.xml',
  32. ],
  33. 'license': 'LGPL-3',
  34. }