~therp-nl/banking-addons/ba61-lp1098699-fix_clieop_rounding_issue

« back to all changes in this revision

Viewing changes to bank_statement_instant_voucher/__openerp__.py

  • Committer: Guewen Baconnier @ Camptocamp
  • Author(s): Stefan Rijnhart
  • Date: 2012-12-10 07:21:06 UTC
  • mfrom: (140.2.5 6.1-bank_statement_instant_voucher)
  • Revision ID: guewen.baconnier@camptocamp.com-20121210072106-xnkuro407242nepe
[IMP] Take advantage of instantly created import transactions on
manually encoded statements

See https://code.launchpad.net/~therp-nl/banking-addons/6.1-lp1066826-matching_wizard_on_manual_statements

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": "Bank statement instant voucher",
 
23
    "version": "1.0r028",
 
24
    "author": "Therp BV",
 
25
    "category": 'Base',
 
26
    'complexity': "normal",
 
27
    "description": """
 
28
This module adds a new button on the bank statement line that allows the
 
29
accountant to instantly create a sales or purchase voucher based on the
 
30
values of the bank statement line.
 
31
 
 
32
This module does not depend on account_banking, but if this module is
 
33
installed, the bank statement line will be reconciled automatically
 
34
in the confirmation step of the wizard.
 
35
 
 
36
If account_banking is not installed, the accountant will still have to
 
37
reconcile the associated move line with the move line from the bank
 
38
statement line manually.
 
39
 
 
40
If the wizard is cancelled,the created voucher will be deleted again.
 
41
 
 
42
Known limitations:
 
43
 
 
44
Currency conversion and payment difference writeoff are not yet
 
45
supported.
 
46
    """,
 
47
    'website': 'http://therp.nl',
 
48
    'images': [],
 
49
    'depends': ['account_voucher'],
 
50
    'data': [
 
51
        'view/account_voucher_instant.xml',
 
52
        'view/account_bank_statement_line.xml',
 
53
    ],
 
54
    "license": 'AGPL-3',
 
55
}
 
56
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: