bzr revid: fp@tinyerp.com-20110918124849-ef9h1aoaazai5g1t
This commit is contained in:
Fabien Pinckaers 2011-09-18 14:48:49 +02:00
commit 70a79343f0
1 changed files with 1 additions and 1 deletions

View File

@ -2279,7 +2279,7 @@ class stock_move(osv.osv):
res += [new_move]
product_obj = self.pool.get('product.product')
for (id, name) in product_obj.name_get(cr, uid, [move.product_id.id]):
self.log(cr, uid, move.id, "%s x %s %s" % (move.product_qty, name, _("were scrapped")))
self.log(cr, uid, move.id, "%s x %s %s" % (quantity, name, _("were scrapped")))
self.action_done(cr, uid, res)
return res