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.

43 lines
1.4 KiB

10 years ago
10 years ago
  1. # -*- coding: utf-8 -*-
  2. # Copyright 2014-2018 Akretion France
  3. # @author: Alexis de Lattre <alexis.delattre@akretion.com>
  4. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. {
  6. 'name': 'CRM Phone',
  7. 'version': '12.0.1.0.0',
  8. 'category': 'Phone',
  9. 'license': 'AGPL-3',
  10. 'summary': 'Validate phone numbers in CRM',
  11. 'description': """
  12. CRM Phone
  13. =========
  14. This module validate phone numbers in the CRM module, just like the
  15. *base_phone* module valide phone numbers in the Partner form. Please refer to
  16. the description of the *base_phone* module for more information.
  17. This module is independant from the Asterisk connector.
  18. Please contact Alexis de Lattre from Akretion <alexis.delattre@akretion.com>
  19. for any help or question about this module.
  20. """,
  21. 'author': "Akretion,Odoo Community Association (OCA)",
  22. 'website': 'http://www.akretion.com/',
  23. 'depends': ['base_phone', 'crm_phone_validation'],
  24. 'external_dependencies': {'python': ['phonenumbers']},
  25. 'conflicts': ['crm_voip'],
  26. 'data': [
  27. 'security/phonecall_security.xml',
  28. 'security/ir.model.access.csv',
  29. 'view/crm_phonecall.xml',
  30. 'view/crm_lead.xml',
  31. 'view/res_partner.xml',
  32. 'view/res_users.xml',
  33. 'wizard/number_not_found_view.xml',
  34. 'wizard/create_crm_phonecall_view.xml',
  35. ],
  36. 'demo': ['demo/crm_phonecall.xml'],
  37. 'installable': True,
  38. 'auto_install': True,
  39. }