Browse Source

Port the fix that I made in extra-6.0 revno 5804.

pull/26/head
Alexis de Lattre 13 years ago
parent
commit
7ec3d004df
  1. 2
      asterisk_click2dial_crm/res_partner_address.py

2
asterisk_click2dial_crm/res_partner_address.py

@ -62,7 +62,7 @@ class res_partner_address(osv.osv):
''' '''
if context is None: if context is None:
context = {} context = {}
super(res_partner_address, self).action_dial_phone(cr, uid, ids, context)
super(res_partner_address, self).action_dial_mobile(cr, uid, ids, context)
crm_phonecall_id = self.create_phonecall(cr, uid, ids, context) crm_phonecall_id = self.create_phonecall(cr, uid, ids, context)
partner = self.browse(cr, uid, ids[0], context).partner_id partner = self.browse(cr, uid, ids[0], context).partner_id
return { return {

Loading…
Cancel
Save