Odoo Mindscape. Understand Odoo faster. Explore modules, fields, dependencies and version differences in one place instead of digging through the source code.

Module: Vertical Lift Module management

Entity: stock.picking

Compute Method: _compute_vlm_move_line_ids

Inputs Method Outputs
for pick in self:
            pick.vlm_move_line_ids = pick.move_line_ids.filtered(
                lambda x: x.location_id.is_vlm or x.location_dest_id.is_vlm
            )
            pick.vlm_pending_move_line_ids = pick.vlm_move_line_ids.filtered(
                "vlm_pending_quantity"
            )

Back to entity