~noviat/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to account_cashflow/__openerp__.py

  • Committer: root
  • Date: 2012-04-10 20:37:39 UTC
  • Revision ID: root@oerp61-20120410203739-flykplw8jzpqa15c
update noviat v6.0 accounting modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    
 
6
#    Copyright (c) 2011 Noviat nv/sa (www.noviat.be). All rights reserved.
 
7
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU Affero General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU Affero General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
{
 
23
    'name': 'Cash Flow Management',
 
24
    'version': '1.3',
 
25
    'license': 'AGPL-3',
 
26
    'author': 'Noviat',
 
27
    'category': 'Generic Modules/Accounting',
 
28
    'description': '''
 
29
Cash Management via Bank Statement Processing.
 
30
 
 
31
Functionality offered by this module:
 
32
- Rules Engine to assign Cash Flow Codes to Bank Statement Lines
 
33
- Wizard to assign Cash Flow Codes to groups of bank transaction
 
34
- Provisions for cash forecasting purposes
 
35
- Reporting
 
36
 
 
37
    ''',
 
38
    'depends': ['account_bank_statement_extensions', 'report_webkit'],
 
39
    'demo_xml': [],
 
40
    'init_xml': [
 
41
        'data/account_cashflow_data.xml',
 
42
    ],
 
43
    'update_xml' : [
 
44
        'security/ir.model.access.csv',
 
45
        'account_cashflow_view.xml',
 
46
        'report/account_cashflow_report_layout.xml',
 
47
        'account_cashflow_report.xml',
 
48
        'wizard/account_cashflow_chart_wizard.xml',
 
49
        'wizard/assign_cashflow_code_wizard.xml',
 
50
        'wizard/reconcile_cashflow_line_wizard.xml',
 
51
        'wizard/confirm_cashflow_line_wizard.xml',
 
52
        'wizard/cancel_cashflow_line_wizard.xml',
 
53
        'wizard/calc_cashflow_balance_wizard.xml',      
 
54
        'wizard/calc_cashflow_opening_balance_wizard.xml',    
 
55
        'wizard/cancel_cashflow_opening_balance_wizard.xml',                
 
56
    ],
 
57
    'active': False,
 
58
    'installable': True,
 
59
}