__manifest__.py 579 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'POS Adyen',
  5. 'version': '1.0',
  6. 'category': 'Sales/Point of Sale',
  7. 'sequence': 6,
  8. 'summary': 'Integrate your POS with an Adyen payment terminal',
  9. 'data': [
  10. 'views/res_config_settings_views.xml',
  11. 'views/pos_payment_method_views.xml',
  12. ],
  13. 'depends': ['point_of_sale'],
  14. 'installable': True,
  15. 'assets': {
  16. 'point_of_sale.assets': [
  17. 'pos_adyen/static/**/*',
  18. ],
  19. },
  20. 'license': 'LGPL-3',
  21. }