From 21aaec282d5cfafaf8c0b4ba52fbe1750470aa5c Mon Sep 17 00:00:00 2001 From: Josse Colpaert <jco@odoo.com> Date: Fri, 12 Sep 2014 16:31:45 +0200 Subject: [PATCH] [FIX] Theoretical quantity for created inventory adjustment should take into account location in context of stock --- addons/stock/wizard/stock_change_product_qty.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/stock/wizard/stock_change_product_qty.py b/addons/stock/wizard/stock_change_product_qty.py index 1e7b19fef718..961eb2e0aef1 100644 --- a/addons/stock/wizard/stock_change_product_qty.py +++ b/addons/stock/wizard/stock_change_product_qty.py @@ -98,7 +98,8 @@ class stock_change_product_qty(osv.osv_memory): 'product_id': data.product_id.id, 'location_id': data.location_id.id, 'lot_id': data.lot_id.id}, context=context) - th_qty = data.product_id.qty_available + product = data.product_id.with_context(location=data.location_id.id) + th_qty = product.qty_available line_data = { 'inventory_id': inventory_id, 'product_qty': data.new_quantity, -- GitLab