__manifest__.py 1020 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. "name" : "Norway - Accounting",
  5. "version" : "2.1",
  6. "author" : "Rolv Råen",
  7. 'category': 'Accounting/Localizations/Account Charts',
  8. "description": """This is the module to manage the accounting chart for Norway in Odoo.
  9. Updated for Odoo 9 by Bringsvor Consulting AS <www.bringsvor.com>
  10. """,
  11. "depends" : [
  12. "account",
  13. "base_iban",
  14. "base_vat",
  15. ],
  16. "data": ['data/l10n_no_chart_data.xml',
  17. 'data/account_tax_group_data.xml',
  18. 'data/account_tax_report_data.xml',
  19. 'data/account.account.template.csv',
  20. 'data/account_tax_data.xml',
  21. 'data/account_chart_template_data.xml',
  22. 'views/res_partner_views.xml',
  23. 'views/res_company_views.xml',
  24. ],
  25. 'demo': [
  26. 'demo/demo_company.xml',
  27. ],
  28. 'post_init_hook': '_preserve_tag_on_taxes',
  29. 'license': 'LGPL-3',
  30. }