From 682fb9f30745770cb6a8c3e8e3b1d953412f28e9 Mon Sep 17 00:00:00 2001 From: Jared Kipe Date: Tue, 21 Jun 2022 16:16:25 +0000 Subject: [PATCH] [FIX] delivery_ups_hibou: use shipping weight over calculated --- delivery_ups_hibou/models/ups_request_patch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delivery_ups_hibou/models/ups_request_patch.py b/delivery_ups_hibou/models/ups_request_patch.py index 5df1b5d7..f8d7a5cd 100644 --- a/delivery_ups_hibou/models/ups_request_patch.py +++ b/delivery_ups_hibou/models/ups_request_patch.py @@ -351,7 +351,7 @@ def patched_set_package_detail(self, client, packages, packaging_type, namespace package.PackageServiceOptions.COD.CODAmount.CurrencyCode = cod_info['currency'] package.PackageWeight.UnitOfMeasurement.Code = p.weight_unit or '' - package.PackageWeight.Weight = p.weight or '' + package.PackageWeight.Weight = p.shipping_weight or p.weight or '' # Package and shipment reference text is only allowed for shipments within # the USA and within Puerto Rico. This is a UPS limitation.