__manifest__.py 1002 B

1234567891011121314151617181920212223242526272829303132
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Bulgaria - Accounting',
  5. 'icon': '/l10n_bg/static/description/icon.png',
  6. 'version': '1.0',
  7. 'category': 'Accounting/Localizations/Account Charts',
  8. 'author': 'Odoo S.A.',
  9. 'description': """
  10. Chart accounting and taxes for Bulgaria
  11. """,
  12. 'depends': [
  13. 'account', 'base_vat', 'l10n_multilang',
  14. ],
  15. 'data': [
  16. 'data/account_chart_template_data.xml',
  17. 'data/account.account.template.csv',
  18. 'data/account.group.template.csv',
  19. 'data/l10n_bg_chart_data.xml',
  20. 'data/tax_report.xml',
  21. 'data/account_tax_group_data.xml',
  22. 'data/account_tax_template_data.xml',
  23. "data/account_fiscal_position_template.xml",
  24. 'data/account_chart_template_configure_data.xml',
  25. ],
  26. 'demo': [
  27. 'demo/demo_company.xml',
  28. ],
  29. 'post_init_hook': 'load_translations',
  30. 'license': 'LGPL-3',
  31. }