__manifest__.py 572 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'POS Restaurant Adyen',
  5. 'version': '1.0',
  6. 'category': 'Point of Sale',
  7. 'sequence': 6,
  8. 'summary': 'Adds American style tipping to Adyen',
  9. 'depends': ['pos_adyen', 'pos_restaurant', 'payment_adyen'],
  10. 'data': [
  11. 'views/pos_payment_method_views.xml',
  12. ],
  13. 'auto_install': True,
  14. 'assets': {
  15. 'point_of_sale.assets': [
  16. 'pos_restaurant_adyen/static/**/*',
  17. ],
  18. },
  19. 'license': 'LGPL-3',
  20. }