2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
{
|
|
|
|
'name': 'Contact Form Number Validation',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'summary': 'Validate and format contact form numbers',
|
|
|
|
'sequence': '9999',
|
|
|
|
'category': 'Hidden',
|
|
|
|
'description': """
|
|
|
|
Contact Number Validation on Website
|
|
|
|
====================================
|
|
|
|
|
|
|
|
Validate contact (phone,mobile) numbers and normalize them on leads and contacts:
|
|
|
|
- use the national format for your company country
|
|
|
|
- use the international format for all others
|
|
|
|
""",
|
|
|
|
'data': [],
|
|
|
|
'depends': [
|
|
|
|
'crm_phone_validation',
|
|
|
|
'website_crm',
|
|
|
|
'website_form',
|
|
|
|
],
|
|
|
|
'auto_install': True,
|
|
|
|
}
|