diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/l10n_cn/__manifest__.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/l10n_cn/__manifest__.py')
| -rw-r--r-- | addons/l10n_cn/__manifest__.py | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/addons/l10n_cn/__manifest__.py b/addons/l10n_cn/__manifest__.py new file mode 100644 index 00000000..23b517e3 --- /dev/null +++ b/addons/l10n_cn/__manifest__.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# Copyright (C) 2008-2008 凯源吕鑫 lvxin@gmail.com <basic chart data> +# 维智众源 oldrev@gmail.com <states data> +# Copyright (C) 2012-2012 南京盈通 ccdos@intoerp.com <small business chart> +# Copyright (C) 2008-now 开阖软件 jeff@osbzr.com < PM and LTS > +# Copyright (C) 2018-now jeffery9@gmail.com + +{ + 'name': 'China - Accounting', + 'version': '1.8', + 'category': 'Accounting/Localizations/Account Charts', + 'author': 'www.openerp-china.org', + 'maintainer': 'jeff@osbzr.com', + 'website': 'http://openerp-china.org', + 'description': """ +Includes the following data for the Chinese localization +======================================================== + +Account Type/科目类型 + +State Data/省份数据 + + 科目类型\会计科目表模板\增值税\辅助核算类别\管理会计凭证簿\财务会计凭证簿 + + 添加中文省份数据 + + 增加小企业会计科目表 + + 修改小企业会计科目表 + + 修改小企业会计税率 + +We added the option to print a voucher which will also +print the amount in words (special Chinese characters for numbers) +correctly when the cn2an library is installed. (e.g. with pip3 install cn2an) + """, + 'depends': ['base', 'account', 'l10n_multilang'], + 'data': [ + 'data/account_tax_group_data.xml', + 'data/l10n_cn_chart_data.xml', + 'data/account.account.template.csv', + 'data/l10n_cn_chart_post_data.xml', + 'data/account_tax_template_data.xml', + 'data/account_chart_template_data.xml', + 'views/account_move_view.xml', + 'views/account_report.xml', + 'views/report_voucher.xml', + ], + 'demo': [ + 'demo/demo_company.xml', + ], + 'post_init_hook': 'load_translations', + 'license': 'LGPL-3', +} |
