__manifest__.py 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) 2008-2008 凯源吕鑫 lvxin@gmail.com <basic chart data>
  4. # 维智众源 oldrev@gmail.com <states data>
  5. # Copyright (C) 2012-2012 南京盈通 ccdos@intoerp.com <small business chart>
  6. # Copyright (C) 2008-now 开阖软件 jeff@osbzr.com < PM and LTS >
  7. # Copyright (C) 2018-now jeffery9@gmail.com
  8. {
  9. 'name': 'China - Accounting',
  10. 'version': '1.8',
  11. 'category': 'Accounting/Localizations/Account Charts',
  12. 'author': 'www.openerp-china.org',
  13. 'maintainer': 'jeff@osbzr.com',
  14. 'website': 'http://openerp-china.org',
  15. 'description': """
  16. Includes the following data for the Chinese localization
  17. ========================================================
  18. Account Type/科目类型
  19. State Data/省份数据
  20. 科目类型\会计科目表模板\增值税\辅助核算类别\管理会计凭证簿\财务会计凭证簿
  21. 添加中文省份数据
  22. 增加小企业会计科目表
  23. 修改小企业会计科目表
  24. 修改小企业会计税率
  25. We added the option to print a voucher which will also
  26. print the amount in words (special Chinese characters for numbers)
  27. correctly when the cn2an library is installed. (e.g. with pip3 install cn2an)
  28. """,
  29. 'depends': ['base', 'account', 'l10n_multilang'],
  30. 'data': [
  31. 'data/account_tax_group_data.xml',
  32. 'data/l10n_cn_chart_data.xml',
  33. 'data/account.account.template.csv',
  34. 'data/l10n_cn_chart_post_data.xml',
  35. 'data/account_tax_template_data.xml',
  36. 'data/account_chart_template_data.xml',
  37. 'views/account_move_view.xml',
  38. 'views/account_report.xml',
  39. 'views/report_voucher.xml',
  40. ],
  41. 'demo': [
  42. 'demo/demo_company.xml',
  43. ],
  44. 'post_init_hook': 'load_translations',
  45. 'license': 'LGPL-3',
  46. }