1234567891011121314151617181920212223242526 |
- # Part of Odoo. See LICENSE file for full copyright and licensing details.
- {
- 'name': 'Payment Provider: Demo',
- 'version': '2.0',
- 'category': 'Hidden',
- 'sequence': 350,
- 'summary': "A payment provider for running fake payment flows for demo purposes.",
- 'depends': ['payment'],
- 'data': [
- 'views/payment_demo_templates.xml',
- 'views/payment_templates.xml',
- 'views/payment_token_views.xml',
- 'views/payment_transaction_views.xml',
- 'data/payment_provider_data.xml',
- ],
- 'post_init_hook': 'post_init_hook',
- 'uninstall_hook': 'uninstall_hook',
- 'assets': {
- 'web.assets_frontend': [
- 'payment_demo/static/src/js/**/*',
- ],
- },
- 'license': 'LGPL-3',
- }
|