__manifest__.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. "name": "Sweden - Accounting",
  5. "version": "1.0",
  6. "author": "XCLUDE, Odoo SA",
  7. "category": "Accounting/Localizations/Account Charts",
  8. 'description': """
  9. Swedish Accounting
  10. ------------------
  11. This is the base module to manage the accounting chart for Sweden in Odoo.
  12. It also includes the invoice OCR payment reference handling.
  13. """,
  14. "depends": ["account", "base_vat"],
  15. "data": [
  16. 'data/account.account.tag.csv',
  17. "data/account_chart_template_before_accounts.xml",
  18. "data/account.account.template-K3.csv",
  19. "data/account.account.template-K2.csv",
  20. "data/account.account.template.csv",
  21. "data/account_chart_template_after_accounts.xml",
  22. "data/account_tax_group_data.xml",
  23. "data/account_tax_report_data.xml",
  24. "data/account_tax_template.xml",
  25. "data/account_fiscal_position_template.xml",
  26. "data/account_fiscal_position_account_template.xml",
  27. "data/account_fiscal_position_tax_template.xml",
  28. "data/account_chart_template_configuration.xml",
  29. "views/partner_view.xml",
  30. "views/account_journal_view.xml",
  31. ],
  32. 'demo': [
  33. 'demo/demo_company.xml',
  34. ],
  35. 'license': 'LGPL-3',
  36. }