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.

74 lines
3.3 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Asterisk click2dial CRM module for OpenERP
  5. # Copyright (c) 2011 Zikzakmedia S.L. (http://zikzakmedia.com)
  6. # Copyright (c) 2012-2013 Akretion (http://www.akretion.com)
  7. # @author: Jesús Martín <jmartin@zikzakmedia.com>
  8. # @author: Alexis de Lattre <alexis.delattre@akretion.com>
  9. #
  10. # This program is free software: you can redistribute it and/or modify
  11. # it under the terms of the GNU Affero General Public License as published by
  12. # the Free Software Foundation, either version 3 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU Affero General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU Affero General Public License
  21. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. #
  23. ##############################################################################
  24. from openerp.osv import osv, fields
  25. # Lib to translate error messages
  26. from openerp.tools.translate import _
  27. class wizard_create_crm_phonecall(osv.osv_memory):
  28. _name = "wizard.create.crm.phonecall"
  29. def button_create_outgoing_phonecall(self, cr, uid, ids, context=None):
  30. partner = self.pool['res.partner'].browse(cr, uid, context.get('partner_id'), context=context)
  31. return self._create_open_crm_phonecall(cr, uid, partner, crm_categ='Outbound', context=context)
  32. def _create_open_crm_phonecall(self, cr, uid, partner, crm_categ, context=None):
  33. if context is None:
  34. context = {}
  35. categ_ids = self.pool['crm.case.categ'].search(cr, uid, [('name','=',crm_categ)], context={'lang': 'en_US'})
  36. case_section_ids = self.pool['crm.case.section'].search(cr, uid, [('member_ids', 'in', uid)], context=context)
  37. context.update({
  38. 'default_partner_id': partner.id or False,
  39. 'default_partner_phone': partner.phone,
  40. 'default_partner_mobile': partner.mobile,
  41. 'default_categ_id': categ_ids and categ_ids[0] or False,
  42. 'default_section_id': case_section_ids and case_section_ids[0] or False,
  43. })
  44. return {
  45. 'name': partner.name,
  46. 'domain': [('partner_id', '=', partner.id)],
  47. 'res_model': 'crm.phonecall',
  48. 'view_type': 'form',
  49. 'view_mode': 'form,tree',
  50. 'type': 'ir.actions.act_window',
  51. 'nodestroy': False, # close the pop-up wizard after action
  52. 'target': 'current',
  53. 'context': context,
  54. }
  55. wizard_create_crm_phonecall()
  56. class wizard_open_calling_partner(osv.osv_memory):
  57. _inherit = "wizard.open.calling.partner"
  58. def create_incoming_phonecall(self, cr, uid, ids, crm_categ, context=None):
  59. '''Started by button on 'open calling partner wizard'''
  60. partner = self.browse(cr, uid, ids[0], context=context).partner_id
  61. action = self.pool['wizard.create.crm.phonecall']._create_open_crm_phonecall(cr, uid, partner, crm_categ='Inbound', context=context)
  62. return action
  63. wizard_open_calling_partner()