Jalpesh Patel(OpenERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-bug-1052079-pja into
lp:openobject-addons.
Requested reviews:
Atul Patel(OpenERP) (atp-openerp)
Related bugs:
Bug #1052079 in OpenERP Addons: "[6.1 / trunk] survey module not fully
unicode aware"
https://bugs.launchpad.net/openobject-addons/+bug/1052079
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1052079-pja/+merge/126383
Hello,
survey module not fully unicode aware so i have improve code in
survey_answer.py wizard file. it has
been Fixed in https://bugs.launchpad.net/openobject-addons/+bug/1052079
Revno:7544
Thanks!
pja
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1052079-pja/+merge/126383
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-bug-1052079-pja.
=== modified file 'survey/wizard/survey_answer.py'
--- survey/wizard/survey_answer.py 2012-09-19 05:32:14 +0000
+++ survey/wizard/survey_answer.py 2012-09-26 06:16:20 +0000
@@ -510,7 +510,7 @@
value[field] = ans.value
if que.comment and (field.split('_')[1] == "comment" or field.split('_')[1] == "other"):
- value[field] = str(que.comment)
+ value[field] = (que.comment).encode('utf-8')
elif que.single_text and field.split('_')[1] == "single":
value[field] = str(que.single_text)
_______________________________________________
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