forked from OCA/partner-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
23 lines (22 loc) · 878 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2021 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Partner Mobile Duplicate Warn",
"version": "14.0.1.0.1",
"category": "Partner Management",
"license": "AGPL-3",
"summary": "Warning banner on partner form if another partner has the same mobile",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"website": "https://github.com/OCA/partner-contact",
"depends": ["phone_validation"],
# I add phonenumbers in external_dependencies
# because the phone_validation module doesn't do it
# and it's needed for Travis
"external_dependencies": {"python": ["phonenumbers"]},
"data": [
"views/res_partner.xml",
],
"installable": True,
}