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.

71 lines
3.2 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 orm, fields
  25. from openerp.tools.translate import _
  26. class wizard_create_crm_phonecall(orm.TransientModel):
  27. _name = "wizard.create.crm.phonecall"
  28. def button_create_outgoing_phonecall(self, cr, uid, ids, context=None):
  29. partner = self.pool['res.partner'].browse(cr, uid, context.get('partner_id'), context=context)
  30. return self._create_open_crm_phonecall(cr, uid, partner, crm_categ='Outbound', context=context)
  31. def _create_open_crm_phonecall(self, cr, uid, partner, crm_categ, context=None):
  32. if context is None:
  33. context = {}
  34. categ_ids = self.pool['crm.case.categ'].search(cr, uid, [('name','=',crm_categ)], context={'lang': 'en_US'})
  35. case_section_ids = self.pool['crm.case.section'].search(cr, uid, [('member_ids', 'in', uid)], context=context)
  36. context.update({
  37. 'default_partner_id': partner.id or False,
  38. 'default_partner_phone': partner.phone,
  39. 'default_partner_mobile': partner.mobile,
  40. 'default_categ_id': categ_ids and categ_ids[0] or False,
  41. 'default_section_id': case_section_ids and case_section_ids[0] or False,
  42. })
  43. return {
  44. 'name': partner.name,
  45. 'domain': [('partner_id', '=', partner.id)],
  46. 'res_model': 'crm.phonecall',
  47. 'view_type': 'form',
  48. 'view_mode': 'form,tree',
  49. 'type': 'ir.actions.act_window',
  50. 'nodestroy': False, # close the pop-up wizard after action
  51. 'target': 'current',
  52. 'context': context,
  53. }
  54. class wizard_open_calling_partner(orm.TransientModel):
  55. _inherit = "wizard.open.calling.partner"
  56. def create_incoming_phonecall(self, cr, uid, ids, crm_categ, context=None):
  57. '''Started by button on 'open calling partner wizard'''
  58. partner = self.browse(cr, uid, ids[0], context=context).partner_id
  59. action = self.pool['wizard.create.crm.phonecall']._create_open_crm_phonecall(cr, uid, partner, crm_categ='Inbound', context=context)
  60. return action