summaryrefslogtreecommitdiff
path: root/addons/crm_iap_lead_enrich/__manifest__.py
blob: ed0bdbde2332f4090d422b2c22e6f6d163f687f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.

{
    'name': 'Lead Enrichment',
    'summary': 'Enrich Leads/Opportunities using email address domain',
    'version': '1.1',
    'category': 'Sales/CRM',
    'version': '1.1',
    'depends': [
        'iap_crm',
        'iap_mail',
    ],
    'data': [
        'data/ir_cron.xml',
        'data/ir_action.xml',
        'data/mail_data.xml',
        'views/crm_lead_views.xml',
        'views/res_config_settings_view.xml',
    ],
    'post_init_hook': '_synchronize_cron',
    'auto_install': True,
    'license': 'LGPL-3',
}