c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #15742
[Bug 707809] Re: UnicodeEncodeError in addons\stock\wizard\stock_change_product_qty.py
Setting the Milestone 6.0.2 as its fixed already on 6.0.1,as a result,will be available for 6.1 as well.
Thanks.
** Tags added: maintenance
** Changed in: openobject-addons
Milestone: None => 6.0.2
--
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 Released
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