diff options
Diffstat (limited to 'fixco_custom/models/shipment_group.py')
| -rw-r--r-- | fixco_custom/models/shipment_group.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixco_custom/models/shipment_group.py b/fixco_custom/models/shipment_group.py index 546251a..b57cfa8 100644 --- a/fixco_custom/models/shipment_group.py +++ b/fixco_custom/models/shipment_group.py @@ -96,7 +96,7 @@ class ShipmentGroup(models.Model): if not picking_line.picking_id: continue - for move in picking_line.picking_id.move_ids_without_package: + for move in picking_line.picking_id.move_line_ids_without_package: existing_line = record.shipment_line.filtered( lambda l: l.product_id == move.product_id and l.picking_id.tracking_number == picking_line.scan_receipt and |
