diff --git a/rma/models/rma_order_line.py b/rma/models/rma_order_line.py index fd53d9ae5..e203a0ae1 100644 --- a/rma/models/rma_order_line.py +++ b/rma/models/rma_order_line.py @@ -125,11 +125,6 @@ def _get_rma_move_qty(self, states, direction="in"): ) ) for move in moves: - # If the move is part of a chain don't count it - if direction == "out" and move.move_orig_ids: - continue - elif direction == "in" and move.move_dest_ids: - continue qty += product_obj._compute_quantity(move.product_uom_qty, rec.uom_id) return qty