Odoo18-Base/addons/payment_adyen/__manifest__.py
2025-03-10 11:12:23 +07:00

28 lines
935 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Payment Provider: Adyen',
'version': '2.0',
'category': 'Accounting/Payment Providers',
'sequence': 350,
'summary': "A Dutch payment provider covering Europe and the US.",
'description': " ", # Non-empty string to avoid loading the README file.
'depends': ['payment'],
'data': [
'views/payment_adyen_templates.xml',
'views/payment_provider_views.xml',
'views/payment_templates.xml', # Only load the SDK on pages with a payment form.
'data/payment_provider_data.xml', # Depends on views/payment_adyen_templates.xml
],
'application': False,
'post_init_hook': 'post_init_hook',
'uninstall_hook': 'uninstall_hook',
'assets': {
'web.assets_frontend': [
'payment_adyen/static/src/js/payment_form.js',
],
},
'license': 'LGPL-3',
}