[FIX] mail: allow to set own batch size for mass mailing
authorDenis Ledoux <dle@odoo.com>
Mon, 24 Nov 2014 15:28:03 +0000 (16:28 +0100)
committerDenis Ledoux <dle@odoo.com>
Mon, 24 Nov 2014 15:38:12 +0000 (16:38 +0100)
addons/mail/wizard/mail_compose_message.py

index a0577b6..4e9f675 100644 (file)
@@ -221,7 +221,9 @@ class mail_compose_message(osv.TransientModel):
             else:
                 res_ids = [wizard.res_id]
 
-            sliced_res_ids = [res_ids[i:i + self._batch_size] for i in range(0, len(res_ids), self._batch_size)]
+            batch_size = self.pool['ir.config_parameter'].get_param(cr, SUPERUSER_ID, 'mail.batch_size') or self._batch_size
+
+            sliced_res_ids = [res_ids[i:i + batch_size] for i in range(0, len(res_ids), batch_size)]
             for res_ids in sliced_res_ids:
                 all_mail_values = self.get_mail_values(cr, uid, wizard, res_ids, context=context)
                 for res_id, mail_values in all_mail_values.iteritems():