bank-payment/account_banking_sepa_credit_transfer/__manifest__.py

27 lines
849 B
Python
Raw Normal View History

2021-03-23 19:28:51 +00:00
# © 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',
2021-05-27 10:42:51 +00:00
'version': '1.0.1.0.0',
2021-03-23 19:28:51 +00:00
'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,
}