12345678910111213141516171819202122 |
- # -*- coding: utf-8 -*-
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'POS Restaurant Adyen',
- 'version': '1.0',
- 'category': 'Point of Sale',
- 'sequence': 6,
- 'summary': 'Adds American style tipping to Adyen',
- 'depends': ['pos_adyen', 'pos_restaurant', 'payment_adyen'],
- 'data': [
- 'views/pos_payment_method_views.xml',
- ],
- 'auto_install': True,
- 'assets': {
- 'point_of_sale.assets': [
- 'pos_restaurant_adyen/static/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|