__manifest__.py 755 B

1234567891011121314151617181920212223242526
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Payment Provider: Demo',
  4. 'version': '2.0',
  5. 'category': 'Hidden',
  6. 'sequence': 350,
  7. 'summary': "A payment provider for running fake payment flows for demo purposes.",
  8. 'depends': ['payment'],
  9. 'data': [
  10. 'views/payment_demo_templates.xml',
  11. 'views/payment_templates.xml',
  12. 'views/payment_token_views.xml',
  13. 'views/payment_transaction_views.xml',
  14. 'data/payment_provider_data.xml',
  15. ],
  16. 'post_init_hook': 'post_init_hook',
  17. 'uninstall_hook': 'uninstall_hook',
  18. 'assets': {
  19. 'web.assets_frontend': [
  20. 'payment_demo/static/src/js/**/*',
  21. ],
  22. },
  23. 'license': 'LGPL-3',
  24. }