We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca7f9c commit 28f8d7dCopy full SHA for 28f8d7d
stock_vlm_mgmt/models/stock_location.py
@@ -131,6 +131,7 @@ def action_view_vlm_quants(self):
131
action["context"] = dict(
132
self.env.context,
133
vlm_inventory_mode=True,
134
+ default_location_id=self.id,
135
)
136
view_id = self.env.ref("stock_vlm_mgmt.view_stock_quant_inventory_tree").id
137
action.update(
stock_vlm_mgmt/models/vlm_tray_cell_position_mixin.py
@@ -38,7 +38,7 @@ def _compute_human_pos_y(self):
38
39
@api.depends("tray_matrix")
40
def _compute_pos(self):
41
- for record in self:
+ for record in self.filtered("tray_matrix"):
42
if not record.tray_matrix["selected"]:
43
continue
44
record.update(
0 commit comments