c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #14138
[Bug 707809] Re: UnicodeEncodeError in addons\stock\wizard\stock_change_product_qty.py
Hello,
Thanks for Reporting.
It has been fixed in lp:~openerp-dev/openobject-addons/ron-dev-addons2
Revision ID: ron@xxxxxxxxxxx-20110127114701-yilw96l2f3bxnbh2
Revision num:5131.
It will be available in trunk soon,
** Changed in: openobject-addons
Status: In Progress => Fix Committed
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/707809
Title:
UnicodeEncodeError in addons\stock\wizard\stock_change_product_qty.py
Status in OpenERP Modules (addons):
Fix Committed
Bug description:
in stock module line
87..(addons\stock\wizard\stock_change_product_qty.py", line 87 OE
server 6.0.1 windows all in one.)
inventory_id = inventry_obj.create(cr , uid, {'name': _('INV: ') +
str(res_original.name)}, context=context)
I got the "UnicodeEncodeError" exception.
and I fixed it with:
inventory_id = inventry_obj.create(cr , uid, {'name': _('INV: ') +
res_original.name}, context=context)
References