mirror of
https://github.com/OCA/report-print-send.git
synced 2025-02-16 07:11:31 +02:00
dict.copy() is more efficient than calling dict
This commit is contained in:
@@ -30,7 +30,7 @@ class Report(models.Model):
|
|||||||
""" Print a document, do not return the document file """
|
""" Print a document, do not return the document file """
|
||||||
if context is None:
|
if context is None:
|
||||||
context = self.pool['res.users'].context_get(cr, uid)
|
context = self.pool['res.users'].context_get(cr, uid)
|
||||||
local_context = dict(context)
|
local_context = context.copy()
|
||||||
local_context['must_skip_send_to_printer'] = True
|
local_context['must_skip_send_to_printer'] = True
|
||||||
document = self.get_pdf(cr, uid, ids, report_name,
|
document = self.get_pdf(cr, uid, ids, report_name,
|
||||||
html=html, data=data, context=local_context)
|
html=html, data=data, context=local_context)
|
||||||
|
|||||||
Reference in New Issue
Block a user