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.

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