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.

66 lines
2.8 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Asterisk click2dial CRM module for OpenERP
  5. # Copyright (c) 2011 Zikzakmedia S.L. (http://zikzakmedia.com) All Rights Reserved.
  6. # Copyright (c) 2012-2013 Akretion (http://www.akretion.com)
  7. # Copyright (c) 2013 Invitu (http://www.invitu.com)
  8. # @author: Jesús Martín <jmartin@zikzakmedia.com>
  9. # @author: Alexis de Lattre <alexis.delattre@akretion.com>
  10. #
  11. # This program is free software: you can redistribute it and/or modify
  12. # it under the terms of the GNU Affero General Public License as published by
  13. # the Free Software Foundation, either version 3 of the License, or
  14. # (at your option) any later version.
  15. #
  16. # This program is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. # GNU Affero General Public License for more details.
  20. #
  21. # You should have received a copy of the GNU Affero General Public License
  22. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. #
  24. ##############################################################################
  25. {
  26. "name": "Asterisk Click2dial CRM",
  27. "version": "0.1",
  28. "author": "Zikzakmedia SL, Akretion",
  29. "website": "http://www.zikzakmedia.com",
  30. "license" : "AGPL-3",
  31. "category": "Customer Relationship Management",
  32. "description": """
  33. This module adds CRM-specific features to the asterisk_click2dial module.
  34. It adds 2 features :
  35. First, when you do a click2dial, OpenERP will propose you to create an
  36. outbound phone call in the CRM ; if you answer 'Yes', it will create the phone
  37. call in the CRM and open it in a new tab. If some users don't want to be asked
  38. to create a phone call in the CRM each time they do a click2dial, you
  39. should disable the corresponding option in the 'Telephony' tab of the 'User'
  40. form.
  41. Second, when you receive a phone call and run the wizard "Open calling partner",
  42. if the partner is found in OpenERP, you will see a button that proposes to create
  43. an inbound phone call in the CRM.
  44. This module has been initially developped by Zikzakmedia and has been enhanced by Akretion.
  45. A detailed documentation for the OpenERP-Asterisk connector is available on the Akretion Web site : http://www.akretion.com/en/products-and-services/openerp-asterisk-voip-connector
  46. """,
  47. "depends": [
  48. 'asterisk_click2dial',
  49. 'crm',
  50. ],
  51. "init_xml": [],
  52. "demo_xml": [],
  53. "update_xml": [
  54. 'wizard/open_calling_partner_view.xml',
  55. 'wizard/create_crm_phonecall_view.xml',
  56. 'res_users_view.xml',
  57. 'crm_lead_view.xml',
  58. ],
  59. "installable": True,
  60. }