blob: c783ef17c721c8bab8c80f134b15274f50abc9c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Contacts',
'category': 'Sales/CRM',
'sequence': 150,
'summary': 'Centralize your address book',
'description': """
This module gives you a quick view of your contacts directory, accessible from your home page.
You can track your vendors, customers and other contacts.
""",
'depends': ['base', 'mail'],
'data': [
'views/contact_views.xml',
],
'application': True,
'license': 'LGPL-3',
}
|