You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
931 B
28 lines
931 B
# -*- coding: utf-8 -*-
|
|
# Copyright 2014-2018 Akretion France
|
|
# @author: Alexis de Lattre <alexis@via.ecp.fr>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Base Phone',
|
|
'version': '12.0.1.0.0',
|
|
'category': 'Phone',
|
|
'license': 'AGPL-3',
|
|
'summary': 'Validate phone numbers',
|
|
'author': "Akretion,Odoo Community Association (OCA)",
|
|
'website': 'http://www.akretion.com/',
|
|
'depends': ['phone_validation', 'base_setup'],
|
|
'external_dependencies': {'python': ['phonenumbers']},
|
|
'data': [
|
|
'security/phone_security.xml',
|
|
'security/ir.model.access.csv',
|
|
'views/res_config_settings.xml',
|
|
'views/res_users_view.xml',
|
|
'wizard/reformat_all_phonenumbers_view.xml',
|
|
'wizard/number_not_found_view.xml',
|
|
'views/web_phone.xml',
|
|
],
|
|
'qweb': ['static/src/xml/phone.xml'],
|
|
'images': [],
|
|
'installable': True,
|
|
}
|