Skip to content

Commit 90b2921

Browse files
author
alex
committed
[IMP] sale_manual_delivery: enable multiple deliveries
1 parent 5bd8959 commit 90b2921

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

sale_manual_delivery/models/sale_order.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ def _compute_delivery_pending(self):
2626
lines_pending = rec.order_line.filtered(
2727
lambda x: x.product_id.type != "service"
2828
and x.qty_to_procure > 0
29-
and (
30-
not x.move_ids
31-
or all(state in ("cancel",) for state in x.move_ids.mapped("state"))
32-
)
3329
)
3430
rec.has_pending_delivery = bool(lines_pending)
3531

0 commit comments

Comments
 (0)