1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Adyen for Platforms',
'version': '1.0',
'category': '',
'summary': 'Base Module for Adyen for Platforms',
'description': 'Base Module for Adyen for Platforms, used in eCommerce and PoS',
'depends': ['mail', 'web'],
'data': [
'data/adyen_platforms_data.xml',
'security/ir.model.access.csv',
'views/adyen_account_templates.xml',
'views/adyen_account_views.xml',
'views/adyen_transaction_views.xml',
'views/assets.xml',
],
'qweb': [
"static/src/xml/adyen_account_templates.xml",
"static/src/xml/adyen_transactions_templates.xml",
],
'installable': True,
'license': 'LGPL-3',
}
|