[FIX] stock: small important fix

bzr revid: nel@tinyerp.com-20120424153046-sofwk2l38a9x22o7
This commit is contained in:
Najlaâ 2012-04-24 17:30:46 +02:00
parent 200f95d0b2
commit 49cac191b0
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class stock_return_picking(osv.osv_memory):
valid_lines = 0
return_history = self.get_return_history(cr, uid, record_id, context)
for m in pick.move_lines:
if return_history.get(m.id) and m.product_qty * m.product_uom.factor > return_history[m.id]:
if (return_history.get(m.id) == 0) and (m.product_qty * m.product_uom.factor > return_history[m.id]):
valid_lines += 1
if not valid_lines:
raise osv.except_osv(_('Warning !'), _("There are no products to return (only lines in Done state and not fully returned yet can be returned)!"))