Daily updates from Odoo
Monday, February 11, 2019
1 change · master
Resolved issues and error corrections
This fix restores FedEx delivery functionality after a previous software library change caused shipping requests and related cost calculations to fail. It corrects how FedEx data is read and ensures shipment documents are handled properly, reducing disruption for businesses using FedEx shipping in Odoo.
Original PR description
Since commit https://github.com/odoo/enterprise/commit/8744f072168d653a4dfa9d6e0cf62c80321d2688 that changes the library 'suds' to 'zeep', fedex delivery didn't work anymore: - Some call to self.client.factory haven't been changed to 'self.factory' - Values returned by the library zeep are in 'Decimal' instead of float. so computation of currency are not working. - CompletedShipmentDetail.ShipmentDocuments returns an empty list instead of not being present.