2021-03-23 19:28:51 +00:00
|
|
|
# Copyright 2013-2016 Akretion - Alexis de Lattre
|
|
|
|
# Copyright 2014-2017 Tecnativa - Pedro M. Baeza
|
|
|
|
# Copyright 2016 Tecnativa - Antonio Espinosa
|
|
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Account Banking PAIN Base Module',
|
|
|
|
'summary': 'Base module for PAIN file generation',
|
2021-05-27 10:42:51 +00:00
|
|
|
'version': '1.0.1.0.3',
|
2021-03-23 19:28:51 +00:00
|
|
|
'license': 'AGPL-3',
|
|
|
|
'author': "Akretion, "
|
|
|
|
"Noviat, "
|
|
|
|
"Tecnativa, "
|
|
|
|
"Odoo Community Association (OCA)",
|
|
|
|
'website': 'https://gitlab.com/flectra-community/bank-payment',
|
|
|
|
'category': 'Hidden',
|
|
|
|
'depends': ['account_payment_order'],
|
|
|
|
'external_dependencies': {
|
|
|
|
'python': ['unidecode', 'lxml'],
|
|
|
|
},
|
|
|
|
'data': [
|
|
|
|
'security/security.xml',
|
|
|
|
'views/account_payment_line.xml',
|
|
|
|
'views/account_payment_order.xml',
|
|
|
|
'views/bank_payment_line_view.xml',
|
|
|
|
'views/account_payment_mode.xml',
|
|
|
|
'views/res_config_settings.xml',
|
|
|
|
'views/account_payment_method.xml',
|
|
|
|
],
|
|
|
|
'post_init_hook': 'set_default_initiating_party',
|
|
|
|
'installable': True,
|
|
|
|
}
|