[FIX] revert commit 6513, as it breaks the tests

bzr revid: rco@openerp.com-20120208112946-purvqw5o807p0eek
This commit is contained in:
Raphael Collet 2012-02-08 12:29:46 +01:00
parent 44263a42b2
commit 744d41fd2b
1 changed files with 3 additions and 0 deletions

View File

@ -2452,12 +2452,14 @@ class stock_move(osv.osv):
quantity = move.product_qty
uos_qty = quantity / move_qty * move.product_uos_qty
location_dest_id = move.product_id.property_stock_production or move.location_dest_id
if quantity_rest > 0:
default_val = {
'product_qty': quantity,
'product_uos_qty': uos_qty,
'state': move.state,
'location_id': location_id or move.location_id.id,
'location_dest_id': location_dest_id.id,
}
current_move = self.copy(cr, uid, move.id, default_val)
res += [current_move]
@ -2474,6 +2476,7 @@ class stock_move(osv.osv):
'product_qty' : quantity_rest,
'product_uos_qty' : uos_qty_rest,
'location_id': location_id or move.location_id.id,
'location_dest_id': location_dest_id.id,
}
self.write(cr, uid, [move.id], update_val)