|
@ -25,3 +25,9 @@ class Report(models.Model): |
|
|
return super(Report, self).get_pdf(cr, uid, ids, report_name, |
|
|
return super(Report, self).get_pdf(cr, uid, ids, report_name, |
|
|
html=html, data=data, |
|
|
html=html, data=data, |
|
|
context=context) |
|
|
context=context) |
|
|
|
|
|
|
|
|
|
|
|
@api.v8 |
|
|
|
|
|
def get_pdf(self, docids, report_name, html=None, data=None): |
|
|
|
|
|
return self._model.get_pdf(self._cr, self._uid, |
|
|
|
|
|
docids, report_name, |
|
|
|
|
|
html=html, data=data, context=self._context) |