~taktik/openobject-addons/hui-extra-6.1

« back to all changes in this revision

Viewing changes to account_cashflow_operations/__openerp__.py

  • Committer: root
  • Date: 2013-01-25 09:57:08 UTC
  • Revision ID: root@oerp61-20130125095708-oh7e3hxduhionhyy
update noviat 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) 2012 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 Operations',
 
24
    'version': '0.1',
 
25
    'license': 'AGPL-3',
 
26
    'author': 'Noviat',
 
27
    'category': 'Generic Modules/Accounting',
 
28
    'description': '''
 
29
Cash Management Operations: 
 
30
     1) Straigth Loan Demands
 
31
        Supported are Straight Loan Demands with following characteristics:
 
32
        - Option 1 : Single payment of principal and interest amount on the maturity date
 
33
        - Option 2 : Payment of interest at start date and principal amount on the maturity date
 
34
        - Day Count Basis : 360 or 365
 
35
        - Interest calculation formula : amount * rate * days/day_count_basis
 
36
        - Currency equal to currency of associated Bank Journal
 
37
        - Generation of Straight Load Demand letter meant for the Bank
 
38
        Confirming a Straight Loan Demand results in the following actions:
 
39
        - creation of a Cash Management Provision Entries
 
40
     2) Short Term Placements
 
41
        Functionality : idem as Straight Loand Demands
 
42
 
 
43
    ''',
 
44
    'depends': ['account_cashflow'],
 
45
    'demo_xml': [],
 
46
    'init_xml': [
 
47
        'data/account_cash_operation_data.xml',        
 
48
    ],
 
49
    'update_xml' : [
 
50
        'security/ir.model.access.csv',
 
51
        'account_cash_operation.xml',
 
52
        'account_cash_operation_report.xml',
 
53
    ],
 
54
    'installable': True,
 
55
}