__manifest__.py 743 B

1234567891011121314151617181920212223242526
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': 'Payment Provider: Custom Payment Modes',
  4. 'version': '2.0',
  5. 'category': 'Accounting/Payment Providers',
  6. 'sequence': 350,
  7. 'summary': "A payment provider for custom flows like wire transfers.",
  8. 'depends': ['payment'],
  9. 'data': [
  10. 'views/payment_custom_templates.xml',
  11. 'views/payment_provider_views.xml',
  12. 'data/payment_provider_data.xml',
  13. ],
  14. 'assets': {
  15. 'web.assets_frontend': [
  16. 'payment_custom/static/src/js/post_processing.js',
  17. ],
  18. },
  19. 'application': False,
  20. 'post_init_hook': 'post_init_hook',
  21. 'uninstall_hook': 'uninstall_hook',
  22. 'license': 'LGPL-3',
  23. }