~therp-nl/therp-addons/7.0_lp1219418

« back to all changes in this revision

Viewing changes to account_report_alt/__openerp__.py

  • Committer: Ronald Portier
  • Date: 2014-03-28 13:12:43 UTC
  • mfrom: (81.5.17 therp-addons-7.0)
  • Revision ID: ronald@therp.nl-20140328131243-d06yj7u2o9fhshrw
[MERGE] Merge upstream changes
    - resolve text conflict in fetchmail_invoice.

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.1r6",
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
 
        'account_report.xml',
38
 
        'wizard/account_report_common_view.xml',
39
 
        'wizard/account_report_balance_sheet_view.xml',
40
 
        'wizard/account_report_profit_loss_view.xml',
41
 
    ],
42
 
    'demo_xml': [],
43
 
    'test': [ ],
44
 
    'installable': False,
45
 
    'active': False,
46
 
}
47
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: