[FIX] mrp_repair: use action_done to validate a operation componenents when ending a repair

bzr revid: mat@openerp.com-20131018114400-f1iaoynu1vlq325o
This commit is contained in:
Martin Trigaux 2013-10-18 13:44:00 +02:00
parent afe290b844
commit 44bc4f3151
1 changed files with 2 additions and 1 deletions

View File

@ -521,8 +521,9 @@ class mrp_repair(osv.osv):
'location_dest_id': move.location_dest_id.id,
'tracking_id': False,
'prodlot_id': move.prodlot_id and move.prodlot_id.id or False,
'state': 'done',
'state': 'assigned',
})
move_obj.action_done(cr, uid, [move_id], context=context)
repair_line_obj.write(cr, uid, [move.id], {'move_id': move_id, 'state': 'done'}, context=context)
if repair.deliver_bool:
pick_name = seq_obj.get(cr, uid, 'stock.picking.out')