mirror of
https://gitlab.com/flectra-community/bank-payment.git
synced 2024-11-22 13:42:07 +00:00
27 lines
849 B
Python
27 lines
849 B
Python
# © 2010-2016 Akretion (www.akretion.com)
|
|
# © 2014 Tecnativa - Pedro M. Baeza
|
|
# © 2016 Tecnativa - Antonio Espinosa
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
{
|
|
'name': 'Account Banking SEPA Credit Transfer',
|
|
'summary': 'Create SEPA XML files for Credit Transfers',
|
|
'version': '1.0.1.0.0',
|
|
'license': 'AGPL-3',
|
|
'author': "Akretion, "
|
|
"Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://gitlab.com/flectra-community/bank-payment',
|
|
'category': 'Banking addons',
|
|
'conflicts': ['account_sepa'],
|
|
'depends': ['account_banking_pain_base'],
|
|
'data': [
|
|
'data/account_payment_method.xml',
|
|
],
|
|
'demo': [
|
|
'demo/sepa_credit_transfer_demo.xml'
|
|
],
|
|
'post_init_hook': 'update_bank_journals',
|
|
'installable': True,
|
|
}
|