[FIX] stock: source document

The origin of a stock.move must be the same of its  picking destination.

opw:641887
This commit is contained in:
Goffin Simon 2015-06-11 17:20:50 +02:00
parent 3940a096b2
commit 70c21d7b0d
1 changed files with 1 additions and 1 deletions

View File

@ -2121,7 +2121,7 @@ class stock_move(osv.osv):
if not pick:
move = self.browse(cr, uid, move_ids, context=context)[0]
values = {
'origin': move.origin,
'origin': move.origin or move.move_dest_id and move.move_dest_id.picking_id.origin,
'company_id': move.company_id and move.company_id.id or False,
'move_type': move.group_id and move.group_id.move_type or 'direct',
'partner_id': move.partner_id.id or False,