summaryrefslogtreecommitdiff
path: root/addons/adyen_platforms/__manifest__.py
blob: ee7efad2f6d9455cf862eb12e49b9722c58843a5 (plain)
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',
}