Friday, March 15, 2019
3 changes · master
Enhancements to existing features
FedEx delivery return labels now rely on the standard delivery module setup instead of separate FedEx-specific fields. This reduces duplicate configuration and makes return label handling more consistent across delivery providers.
Original PR description
As generation of return label is now managed through the delivery module, we removed the specific fields that are set in fedex module to use the one created in delivery
Resolved issues and error corrections
Quotation templates now use the correct product description language when products are selected. This helps sales teams send quotes with product details that match the customer’s language, reducing confusion and manual edits.
Original PR description
Description of the issue/feature this PR addresses: Task : https://www.odoo.com/web?#id=23249&view_type=form&model=project.task&action=327&menu_id=4720 Pad:https://pad.odoo.com/p/r.65636c71be35f6e1c47704ff254b09bb Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Updates shipping carrier tests so they match the current packing workflow and avoid incorrect success checks when no package is created. This helps keep delivery integrations for DHL, EasyPost, FedEx, and UPS stable by preventing false test failures or misleading test results.
Original PR description
The signature of the method `_put_in_pack` has changed, which was causing some tests to fail. That's why we should use `put_in_pack` for the `choose.delivery.package` wizard which is in the end more representative of what happens.In addition to this some assertions needed to be corrected since they were wrong when no package were created.