24 lines
660 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'POS Self-Order / Online Payment',
'category': 'Sales/Point of Sale',
'summary': 'Support online payment in self-order',
'version': '1.0',
'depends': ['pos_online_payment', 'pos_self_order'],
'data': [
'views/res_config_settings_views.xml',
],
'installable': True,
'auto_install': True,
'assets': {
'pos_self_order.assets': [
'pos_online_payment_self_order/static/src/**/*',
'web/static/lib/zxing-library/zxing-library.js',
],
},
'license': 'LGPL-3',
}