__manifest__.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) Quartile Limited
  4. {
  5. 'name': 'Japan - Accounting',
  6. 'version': '2.3',
  7. 'category': 'Accounting/Localizations/Account Charts',
  8. 'description': """
  9. Overview:
  10. ---------
  11. * Chart of Accounts and Taxes template for companies in Japan.
  12. * This probably does not cover all the necessary accounts for a company. \
  13. You are expected to add/delete/modify accounts based on this template.
  14. Note:
  15. -----
  16. * Fiscal positions '内税' and '外税' have been added to handle special \
  17. requirements which might arise from POS implementation. [1] Under normal \
  18. circumstances, you might not need to use those at all.
  19. [1] See https://github.com/odoo/odoo/pull/6470 for detail.
  20. """,
  21. 'author': 'Quartile Limited',
  22. 'website': 'https://www.quartile.co/',
  23. 'depends': [
  24. 'account',
  25. 'l10n_multilang',
  26. ],
  27. 'data': [
  28. 'data/l10n_jp_chart_data.xml',
  29. 'data/account.account.template.csv',
  30. 'data/account.tax.group.csv',
  31. 'data/account_tax_report_data.xml',
  32. 'data/account_tax_template_data.xml',
  33. 'data/account_chart_template_data.xml',
  34. 'data/account.fiscal.position.template.csv',
  35. 'data/account_fiscal_position_tax_template_data.xml',
  36. 'data/account_chart_template_configure_data.xml',
  37. ],
  38. 'demo': [
  39. 'demo/demo_company.xml',
  40. ],
  41. 'post_init_hook': 'load_translations',
  42. 'license': 'LGPL-3',
  43. }