769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
24 lines
693 B
Python
24 lines
693 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Contact Form Number Validation',
|
|
'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,
|
|
}
|