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 26 27 28 29 30 31
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Point of Sale online payment',
'depends': ['point_of_sale', 'account_payment'],
'data': [
'views/payment_transaction_views.xml',
'views/pos_payment_views.xml',
'views/pos_payment_method_views.xml',
'views/payment_portal_templates.xml',
'views/account_payment_views.xml',
],
'auto_install': True,
'installable': True,
'assets': {
'point_of_sale.assets_prod': [
'pos_online_payment/static/src/app/**/*',
'pos_online_payment/static/src/overrides/pos_overrides/**/*',
],
'point_of_sale.customer_display_assets': [
'pos_online_payment/static/src/app/online_payment_popup/**/*',
'pos_online_payment/static/src/overrides/customer_display_overrides/**/*',
],
'web.assets_tests': [
'pos_online_payment/static/tests/tours/**/*',
],
},
'license': 'LGPL-3',
}
|