32 lines
1.3 KiB
Python
32 lines
1.3 KiB
Python
# Copyright 2014-2020 Abbaye du Barroux (http://www.barroux.org)
|
|
# Copyright 2014-2020 Akretion (http://www.akretion.com>)
|
|
# @author: Frère Bernard <informatique@barroux.org>
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Base Partner One2many Phone",
|
|
"version": "14.0.1.0.0",
|
|
"category": "Phone",
|
|
"license": "AGPL-3",
|
|
"summary": "One2many link between partners and phone numbers/emails",
|
|
"description": """
|
|
Base Partner One2many Phone
|
|
===========================
|
|
|
|
With this module, one partner can have several phone numbers and several emails. It adds a new table dedicated to phone numbers and emails and a one2many link between partners and phone numbers. This module keeps compatibility with the native behavior of Odoo on phone numbers and emails.
|
|
|
|
It has been developped by brother Bernard from Barroux Abbey and Alexis de Lattre from Akretion.
|
|
""",
|
|
"author": "Akretion",
|
|
"website": "https://github.com/OCA/odoo-usability",
|
|
"depends": ["contacts", "base_usability", "phone_validation"],
|
|
"excludes": ["sms"], # because sms introduces big changes in partner form view
|
|
"data": [
|
|
"partner_phone_view.xml",
|
|
"security/ir.model.access.csv",
|
|
],
|
|
"installable": True,
|
|
"post_init_hook": "migrate_to_partner_phone",
|
|
}
|