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.

69 lines
2.7 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Asterisk click2dial CRM module for OpenERP
  5. # Copyright (c) 2011 Zikzakmedia S.L. (http://zikzakmedia.com)
  6. # All Rights Reserved.
  7. # Copyright (c) 2012 Akretion (http://www.akretion.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
  13. # by 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
  42. "Open calling partner", if the partner is found in OpenERP, you will see a
  43. button that proposes to create an inbound phone call in the CRM.
  44. This module has been initially developped by Zikzakmedia and has been enhanced
  45. by Akretion.
  46. A detailed documentation for the OpenERP-Asterisk connector is available on the
  47. Akretion Web site :
  48. http://www.akretion.com/products-and-services/openerp-asterisk-voip-connector
  49. """,
  50. "depends": [
  51. 'asterisk_click2dial',
  52. 'crm_configuration',
  53. ],
  54. "init_xml": [],
  55. "demo_xml": [],
  56. "update_xml": [
  57. 'wizard/open_calling_partner_view.xml',
  58. 'wizard/create_crm_phonecall_view.xml',
  59. 'res_users_view.xml',
  60. 'res_partner_view.xml',
  61. ],
  62. "installable": True,
  63. }