From 01679990c3e6d125c94b8ac40b35cf768a439c84 Mon Sep 17 00:00:00 2001 From: Mqdd Date: Wed, 4 Feb 2026 14:57:23 +0700 Subject: push --- fixco_custom/models/shipment_group.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fixco_custom/models/shipment_group.py b/fixco_custom/models/shipment_group.py index 4832dd5..5853365 100644 --- a/fixco_custom/models/shipment_group.py +++ b/fixco_custom/models/shipment_group.py @@ -43,7 +43,7 @@ class ShipmentGroup(models.Model): for rec in self: carriers = rec.picking_lines.mapped('carrier') carriers = [c for c in carriers if c] - rec.shipment_method = ', '.join(sorted(set(carriers))) if carriers else '-' + rec.shipment_methods = ', '.join(sorted(set(carriers))) if carriers else '-' @api.onchange('picking_lines') -- cgit v1.2.3