[FIX]mrp:extensibility broken in action_scrap

lp bug: https://launchpad.net/bugs/780589 fixed

bzr revid: ron@tinyerp.com-20110524121958-t1vu2wpnk2yimgo2
This commit is contained in:
ron@tinyerp.com 2011-05-24 17:49:58 +05:30
parent 2a86a9d12d
commit 0bb1e1cba0
1 changed files with 1 additions and 2 deletions

View File

@ -137,14 +137,13 @@ class StockMove(osv.osv):
wf_service = netsvc.LocalService("workflow")
for move in self.browse(cr, uid, ids, context=context):
new_moves = super(StockMove, self).action_scrap(cr, uid, [move.id], product_qty, location_id, context=context)
self.write(cr, uid, [move.id], {'prodlot_id': False, 'tracking_id': False})
production_ids = production_obj.search(cr, uid, [('move_lines', 'in', [move.id])])
for prod_id in production_ids:
wf_service.trg_validate(uid, 'mrp.production', prod_id, 'button_produce', cr)
for new_move in new_moves:
production_obj.write(cr, uid, production_ids, {'move_lines': [(4, new_move)]})
res.append(new_move)
return {}
return res
StockMove()