Activity log for bug #980689

Date Who What changed Old value New value Message
2012-04-13 10:45:49 freeExec bug added bug
2012-04-13 10:46:46 freeExec description The specification reportlab for the tag "paraStyle" is an attribute of "parent." But in your code, it is not used. For some reason, always use the default style of Normal, although you can use is a certain style to it. Now: self.styles_obj[sname] = reportlab.lib.styles.ParagraphStyle(sname, self.default_style["Normal"], **self.styles[sname]) But should (if present parent): self.styles_obj[sname] = reportlab.lib.styles.ParagraphStyle(sname, self.styles_obj[parentname], **self.styles[sname]) The specification reportlab for the tag "paraStyle" is an attribute of "parent." But in your code, it is not used. For some reason, always use the default style of Normal, although you can use is a certain style to it. ..\openerp\report\render\rml2pdf\trml2pdf.py Now: self.styles_obj[sname] = reportlab.lib.styles.ParagraphStyle(sname, self.default_style["Normal"], **self.styles[sname]) But should (if present parent): self.styles_obj[sname] = reportlab.lib.styles.ParagraphStyle(sname, self.styles_obj[parentname], **self.styles[sname])
2012-04-17 12:15:46 Jignesh Rathod(OpenERP) openobject-server: importance Undecided Wishlist
2012-04-17 12:15:46 Jignesh Rathod(OpenERP) openobject-server: status New Confirmed
2012-04-17 12:15:46 Jignesh Rathod(OpenERP) openobject-server: assignee OpenERP's Framework R&D (openerp-dev-framework)