__manifest__.py 535 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Event CRM Sale',
  5. 'version': '1.0',
  6. 'category': 'Marketing/Events',
  7. 'website': 'https://www.odoo.com/app/events',
  8. 'description': "Add information of sale order linked to the registration for the creation of the lead.",
  9. 'depends': ['event_crm', 'event_sale'],
  10. 'data': [
  11. 'views/event_lead_rule_views.xml',
  12. ],
  13. 'installable': True,
  14. 'auto_install': True,
  15. 'license': 'LGPL-3',
  16. }