__manifest__.py 963 B

1234567891011121314151617181920212223242526272829303132
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Estonia - Accounting',
  4. 'version': '1.0',
  5. 'category': 'Accounting/Localizations/Account Charts',
  6. 'description': """
  7. This is the base module to manage the accounting chart for Estonia in Odoo.
  8. """,
  9. 'author': 'Odoo SA',
  10. 'depends': [
  11. 'account',
  12. 'l10n_multilang',
  13. ],
  14. 'data': [
  15. 'data/account_chart_template_data.xml',
  16. 'data/account.account.template.csv',
  17. 'data/l10n_ee_chart_post_data.xml',
  18. 'data/account_tax_group_data.xml',
  19. 'data/account_tax_report_data.xml',
  20. 'data/account_tax_template_data.xml',
  21. 'data/account_fiscal_position_template_data.xml',
  22. 'data/account.group.template.csv',
  23. 'data/account_chart_template_try_loading.xml',
  24. 'views/account_tax_form.xml',
  25. ],
  26. 'demo': [
  27. 'demo/demo_company.xml',
  28. ],
  29. 'license': 'LGPL-3',
  30. }