54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
# -*- encoding: utf-8 -*-
|
||
###############################################################################
|
||
#
|
||
# OpenERP, Open Source Management Solution
|
||
# This module copyright (C) 2014 Savoir-faire Linux
|
||
# (<http://www.savoirfairelinux.com>).
|
||
#
|
||
# This program is free software: you can redistribute it and/or modify
|
||
# it under the terms of the GNU Affero General Public License as
|
||
# published by the Free Software Foundation, either version 3 of the
|
||
# License, or (at your option) any later version.
|
||
#
|
||
# This program is distributed in the hope that it will be useful,
|
||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
# GNU Affero General Public License for more details.
|
||
#
|
||
# You should have received a copy of the GNU Affero General Public License
|
||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
#
|
||
###############################################################################
|
||
|
||
|
||
{
|
||
'name': 'Print chart of accounts',
|
||
'version': '1.0',
|
||
'category': 'Reports/pdf',
|
||
'description': """Print chart of accounts.
|
||
|
||
This module add the menu Accounting \ Charts \ Print chart of Accounts
|
||
and allow to print the selected chart of accounts.
|
||
|
||
This module is based on the old RML engine report.
|
||
|
||
Contributors
|
||
------------
|
||
* Marc Cassuto (marc.cassuto@savoirfairelinux.com)
|
||
* Mathieu Benoit (mathieu.benoit@savoirfairelinux.com)
|
||
|
||
""",
|
||
'author': 'Savoir-faire Linux',
|
||
'website': 'http://www.savoirfairelinux.com',
|
||
'depends': [
|
||
'base',
|
||
'account',
|
||
],
|
||
'data': [
|
||
'account_report.xml',
|
||
'wizard/account_report_chart_of_account.xml',
|
||
],
|
||
'installable': True,
|
||
'auto_install': False,
|
||
}
|