Anup(OpenERP) has proposed merging
lp:~openerp-dev/openobject-server/6.0-opw-16073-ach into
lp:openobject-server/6.0.
Requested reviews:
Jay Vora (OpenERP) (jvo-openerp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-server/6.0-opw-16073-ach/+merge/67801
Hello,
There is a bug in the Partner Balance Report.
When there are special characters like '&','<','>' in the name of Partner, They
are printed as &,>,< respectively.
This fixes the issue.
Thanks.
--
https://code.launchpad.net/~openerp-dev/openobject-server/6.0-opw-16073-ach/+merge/67801
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-server/6.0-opw-16073-ach.
=== modified file 'bin/report/render/rml2pdf/trml2pdf.py'
--- bin/report/render/rml2pdf/trml2pdf.py 2011-05-04 09:50:00 +0000
+++ bin/report/render/rml2pdf/trml2pdf.py 2011-07-13 10:02:28 +0000
@@ -613,7 +613,7 @@
if True or not self._textual(n).isspace():
if not n.tag == 'bullet':
txt_n.text = utils.xml2str(self._textual(n))
- txt_n.tail = n.tail and utils._process_text(self, n.tail.replace('\n','')) or ''
+ txt_n.tail = n.tail and utils.xml2str(utils._process_text(self, n.tail.replace('\n','')) or '')
rc1 += etree.tostring(txt_n)
return rc1
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp