__manifest__.py 611 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Lead Enrichment',
  5. 'summary': 'Enrich Leads/Opportunities using email address domain',
  6. 'category': 'Sales/CRM',
  7. 'version': '1.1',
  8. 'depends': [
  9. 'iap_crm',
  10. 'iap_mail',
  11. ],
  12. 'data': [
  13. 'data/ir_cron.xml',
  14. 'data/ir_action.xml',
  15. 'data/mail_templates.xml',
  16. 'views/crm_lead_views.xml',
  17. 'views/res_config_settings_view.xml',
  18. ],
  19. 'post_init_hook': '_synchronize_cron',
  20. 'auto_install': True,
  21. 'license': 'LGPL-3',
  22. }