Merge pull request #3294 from odoo-dev/8.0-fixextrapack-jco

[FIX] Operation does not necessary have product for extra move
This commit is contained in:
Josse Colpaert 2014-10-24 19:58:48 +02:00
commit ae02468e0a
1 changed files with 1 additions and 1 deletions

View File

@ -1267,7 +1267,7 @@ class stock_picking(osv.osv):
'product_id': product.id,
'product_uom': product.uom_id.id,
'product_uom_qty': remaining_qty,
'name': _('Extra Move: ') + op.product_id.name,
'name': _('Extra Move: ') + product.name,
'state': 'draft',
}
return res