~pedro-q/account-payment/account-payment-sepa-7.0

« back to all changes in this revision

Viewing changes to account_payment_direct_debit/__openerp__.py

  • Committer: Ignacio Ibeas - Acysos S.L.
  • Date: 2014-01-25 13:30:35 UTC
  • Revision ID: ignacio@acysos.com-20140125133035-46kipms7z97u825v
[ADD] SEPA modules ported from Banking Addons to Account Payment Extension

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
#    Copyright (C) 2011 - 2013 Therp BV (<http://therp.nl>).
 
4
#    Copyright (C) 2011 Smile (<http://smile.fr>).
 
5
#    Copyright (C) 2014 Acysos S.L. (<http://acysos.com>).
 
6
#    @author: Ignacio Ibeas <ignacio@acysos.com>
 
7
#    All Rights Reserved
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU Affero General Public License as published by
 
11
#    the Free Software Foundation, either version 3 of the License, or
 
12
#    (at your option) any later version.
 
13
#
 
14
#    This program is distributed in the hope that it will be useful,
 
15
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
#    GNU Affero General Public License for more details.
 
18
#
 
19
#    You should have received a copy of the GNU Affero General Public License
 
20
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
21
#
 
22
##############################################################################
 
23
{
 
24
    'name': 'Direct Debit',
 
25
    'version': '7.0.2.134',
 
26
    'license': 'AGPL-3',
 
27
    'author': ['Therp BV', 'Smile'],
 
28
    'website': 'https://launchpad.net/account-payment',
 
29
    'category': 'Banking addons',
 
30
    'depends': ['account_payment_extension'],
 
31
    'data': [
 
32
        'view/account_payment.xml',
 
33
        'view/account_invoice.xml',
 
34
        'view/payment_type.xml',
 
35
        'workflow/account_invoice.xml',
 
36
        'data/account_payment_term.xml',
 
37
    ],
 
38
    'description': '''
 
39
This module adds support for direct debit orders, analogous to payment orders.
 
40
A new entry in the Accounting/Payment menu allow you to create a direct debit
 
41
order that helps you to select any customer invoices for you to collect.
 
42
 
 
43
This module explicitely implements direct debit orders as applicable
 
44
in the Netherlands. Debit orders are advanced in total by the bank.
 
45
Amounts that cannot be debited or are canceled by account owners are
 
46
credited afterwards. Such a creditation is called a storno. This style of
 
47
direct debit order may not apply to your country.
 
48
 
 
49
This module depends on and is part of the account payment for OpenERP. This set
 
50
of modules helps you to provide support for communications with your local
 
51
banking institutions.
 
52
 
 
53
Adapted to account_payment_extension by Acysos S.L. <info@acysos.com>
 
54
    ''',
 
55
    'installable': True,
 
56
}