[REVERT] reverted revision 4591, for fix 739181 which should have never landed on trunk

bzr revid: qdp-launchpad@openerp.com-20110407113208-ujc2l7ht5j7fh83k
This commit is contained in:
Quentin (OpenERP) 2011-04-07 13:32:08 +02:00
parent 6844f1a4ce
commit 479e7d1bac
2 changed files with 3 additions and 22 deletions

View File

@ -137,6 +137,7 @@ 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)

View File

@ -2238,7 +2238,6 @@ class stock_move(osv.osv):
if quantity <= 0:
raise osv.except_osv(_('Warning!'), _('Please provide a positive quantity to scrap!'))
res = []
to_done = []
for move in self.browse(cr, uid, ids, context=context):
move_qty = move.product_qty
uos_qty = quantity / move_qty * move.product_uos_qty
@ -2254,32 +2253,13 @@ class stock_move(osv.osv):
if move.location_id.usage <> 'internal':
default_val.update({'location_id': move.location_dest_id.id})
new_move = self.copy(cr, uid, move.id, default_val)
res.append(new_move)
to_done.append(new_move)
if move.prodlot_id:
# Create a new move with the qty of scrapped move without prodlot
default_val = {
'product_qty': quantity,
'product_uos_qty': uos_qty,
'tracking_id': move.tracking_id.id,
'prodlot_id': False
}
newmove = self.copy(cr, uid, move.id, default_val)
res.append(new_move)
# Reduce amount of original move by qty of scrapped move
if move.product_qty - quantity > 0:
move.write({
'product_qty': move.product_qty - quantity,
'product_uos_qty': move.product_uos_qty - uos_qty,
})
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.action_done(cr, uid, to_done, context=context)
self.action_done(cr, uid, res)
return res
def action_split(self, cr, uid, ids, quantity, split_by_qty=1, prefix=False, with_lot=True, context=None):