From a783d7b1f3e427331c960ec013cba19aa47cb843 Mon Sep 17 00:00:00 2001
From: JF Aubert <ajf@odoo.com>
Date: Wed, 24 Aug 2022 11:33:46 +0000
Subject: [PATCH] [FIX] stock: fix inventory report

This commit addresses a screen refresh problem.

closes odoo/odoo#98788

Task: 2961768
Signed-off-by: Arnold Moyaux (arm) <arm@odoo.com>
---
 addons/stock/views/stock_quant_views.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/addons/stock/views/stock_quant_views.xml b/addons/stock/views/stock_quant_views.xml
index 6fe19631774a..5b7ac5142e71 100644
--- a/addons/stock/views/stock_quant_views.xml
+++ b/addons/stock/views/stock_quant_views.xml
@@ -174,8 +174,9 @@
     </record>
     <record model="ir.actions.act_window" id="dashboard_open_quants"> <!-- Used in dashboard -->
         <field name="name">Update Quantity</field>
-        <field name="context">{'search_default_internal_loc': 1, 'search_default_productgroup':1, 'search_default_locationgroup':1}</field>
+        <field name="context">{'search_default_internal_loc': 1, 'search_default_productgroup':1, 'search_default_locationgroup':1, 'inventory_mode':True}</field>
         <field name="res_model">stock.quant</field>
+        <field name="view_id" ref="view_stock_quant_tree_editable"/>
     </record>
     <record model="ir.actions.act_window" id="location_open_quants"> <!-- Used in location -->
         <field name="context">{'search_default_productgroup': 1}</field>
-- 
GitLab