Chirag Patel (OpenERP) has proposed merging lp:~openerp-dev/openobject-addons/7.0-opw-584755-cpa into lp:openobject-addons/7.0.
Requested reviews: OpenERP Core Team (openerp) For more details, see: https://code.launchpad.net/~openerp-dev/openobject-addons/7.0-opw-584755-cpa/+merge/145367 Hello, In mass mailing selected customer not add in 'Recipients' field. Demo: 1) Select multiple customer from list view. 2) Click on 'More' from header. 3) Open 'Mass Mailing'. Observed: 'Recipients' field blank. Expected: 'Recipients' field should be fill with selected customer. Thanks -- https://code.launchpad.net/~openerp-dev/openobject-addons/7.0-opw-584755-cpa/+merge/145367 Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/7.0-opw-584755-cpa.
=== modified file 'mail/wizard/mail_compose_message.py' --- mail/wizard/mail_compose_message.py 2013-01-08 16:13:32 +0000 +++ mail/wizard/mail_compose_message.py 2013-01-29 13:28:04 +0000 @@ -81,7 +81,7 @@ elif composition_mode == 'comment' and model and res_id: vals = self.get_record_data(cr, uid, model, res_id, context=context) elif composition_mode == 'mass_mail' and model and active_ids: - vals = {'model': model, 'res_id': res_id} + vals = {'model': model, 'res_id': res_id, 'partner_ids': active_ids} else: vals = {'model': model, 'res_id': res_id} if composition_mode:
_______________________________________________ Mailing list: https://launchpad.net/~openerp-dev-gtk Post to : openerp-dev-gtk@lists.launchpad.net Unsubscribe : https://launchpad.net/~openerp-dev-gtk More help : https://help.launchpad.net/ListHelp