mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
Using same method as in upstream, mandate is filled on invoice creation if no one is provided. This way, we don't need to install account_banking_mandate_sale if we don't want to handle several mandates at sales level.
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# © 2014 Compassion CH - Cyril Sester <csester@compassion.ch>
|
|
# © 2014 Tecnativa - Pedro M. Baeza
|
|
# © 2015-2016 Akretion - Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
{
|
|
'name': 'Account Banking Mandate',
|
|
'summary': 'Banking mandates',
|
|
'version': '9.0.1.1.0',
|
|
'license': 'AGPL-3',
|
|
'author': "Compassion CH, "
|
|
"Tecnativa, "
|
|
"Akretion, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/OCA/bank-payment',
|
|
'category': 'Banking addons',
|
|
'depends': [
|
|
'account_payment_order',
|
|
],
|
|
'data': [
|
|
'views/account_banking_mandate_view.xml',
|
|
'views/account_payment_method.xml',
|
|
'views/account_invoice_view.xml',
|
|
'views/account_payment_line.xml',
|
|
'views/res_partner_bank_view.xml',
|
|
'views/res_partner.xml',
|
|
'views/bank_payment_line_view.xml',
|
|
'views/account_move_line.xml',
|
|
'data/mandate_reference_sequence.xml',
|
|
'security/mandate_security.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'test': ['test/banking_mandate.yml'],
|
|
'installable': True,
|
|
}
|