mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
[PEP8] and correction of doc string
This commit is contained in:
@@ -20,7 +20,6 @@
|
||||
##############################################################################
|
||||
from openerp.osv import orm, fields
|
||||
|
||||
|
||||
class AssembledReport(orm.Model):
|
||||
_name = 'assembled.report'
|
||||
|
||||
@@ -38,5 +37,6 @@ class AssembledReport(orm.Model):
|
||||
|
||||
_defaults = {
|
||||
'sequence': 1,
|
||||
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(cr, uid, 'assembled.report', context=c)
|
||||
'company_id': lambda s, cr, uid, c: s.pool.get('res.company')._company_default_get(
|
||||
cr, uid, 'assembled.report', context=c)
|
||||
}
|
||||
|
||||
@@ -56,7 +56,7 @@ def assemble_pdf(pdf_list):
|
||||
|
||||
|
||||
class PDFReportAssembler(report_sxw.report_sxw):
|
||||
""" PDFReportAssembler allows to put 2 invoice reports in one single pdf"""
|
||||
""" PDFReportAssembler allows to put 2 pdf reports in one single pdf"""
|
||||
|
||||
def _generate_all_pdf(self, cr, uid, ids, data, report_ids, context=None):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user