~therp-nl/therp-addons/7.0_lp1215430

« back to all changes in this revision

Viewing changes to account_report_alt/__openerp__.py

  • Committer: Stefan Rijnhart
  • Date: 2012-01-22 21:47:58 UTC
  • Revision ID: stefan@therp.nl-20120122214758-jspao2fpeizzd1ny
[ADD] port of OpenERP 6.0 balance sheet and P&L report

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    This module copyright (C) 2012 Therp BV (<http://therp.nl>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
{
 
22
    "name" : "Accounting Reports Alternative",
 
23
    "version" : "0.1r3",
 
24
    "author" : "Therp BV",
 
25
    "category": 'Accounting & Finance',
 
26
    'complexity': "normal",
 
27
    "description": """
 
28
This is a port of the financial reports 'Balance sheet' and
 
29
'Profit and Loss' from OpenERP 6.0 to OpenERP 6.1
 
30
    """,
 
31
    'website': 'http://therp.nl',
 
32
    'images' : [],
 
33
    'init_xml': [],
 
34
    "depends" : ["account"],
 
35
    'update_xml': [
 
36
        'menu.xml',
 
37
        'wizard/account_report_common_view.xml',
 
38
        'wizard/account_report_balance_sheet_view.xml',
 
39
        'wizard/account_report_profit_loss_view.xml',
 
40
    ],
 
41
    'demo_xml': [],
 
42
    'test': [ ],
 
43
    'installable': True,
 
44
    'active': False,
 
45
}
 
46
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: