__manifest__.py 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. {
  3. 'name': "Payment - Account",
  4. 'category': 'Accounting/Accounting',
  5. 'summary': "Enable customers to pay invoices on the portal and post payments when transactions are processed.",
  6. 'version': '2.0',
  7. 'depends': ['account', 'payment'],
  8. 'auto_install': ['account'],
  9. 'data': [
  10. 'security/ir.model.access.csv',
  11. 'security/ir_rules.xml',
  12. 'views/account_payment_menus.xml',
  13. 'views/account_portal_templates.xml',
  14. 'views/payment_templates.xml',
  15. 'views/account_move_views.xml',
  16. 'views/account_journal_views.xml',
  17. 'views/account_payment_views.xml',
  18. 'views/payment_provider_views.xml',
  19. 'views/payment_transaction_views.xml',
  20. 'wizards/account_payment_register_views.xml',
  21. 'wizards/payment_link_wizard_views.xml',
  22. 'wizards/payment_refund_wizard_views.xml',
  23. ],
  24. 'assets': {
  25. 'web.assets_frontend': [
  26. 'account_payment/static/src/js/payment_form.js',
  27. ],
  28. },
  29. 'post_init_hook': 'post_init_hook',
  30. 'uninstall_hook': 'uninstall_hook',
  31. 'license': 'LGPL-3',
  32. }