Monday, March 22, 2021
3 changes · master
Enhancements to existing features
Warehouse teams can now carry delivery carrier information through pick, pack, and ship steps when configured. This makes it possible to print shipping labels after validating any stage of the process, reducing delays and manual work before final shipment.
Original PR description
In this commit - 1) Added new field propagate_carrier_id in stock.rule and propgate carrier in PICK PACK and SHIP if it is ticked. 2) Allow to print Label at any stage of PICK PACK and SHIP Task-2363484 Description of the issue/feature this PR addresses: 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
When a shipping label is generated during a multi-step delivery process, it is now attached to messages on all related delivery records. This helps warehouse and operations teams find the correct label regardless of which delivery step they are viewing.
Original PR description
If 2 or 3 steps of delivery is configured and label is printed at any step, put msg with label attachment in all related pickings. Task-2363484
Resolved issues and error corrections
This fix ensures purchased products follow the receipt route set on the product or its category instead of being forced to use the warehouse default route. Businesses with different receiving workflows can now rely on purchase orders to trigger the correct inventory steps.
Original PR description
To reproduce: 1. set WH receipt in 3 steps 2. create a "receipt in 2 steps" route for product 3. create a PO with product "receipt in 2 steps" In inventory, we will see this product still follow the "receipt in 3 steps" route. This is caused when we create move for PO, we prepare the route_ids according to warehouse's route_ids. After the move has it's own route_ids, it will not search for route set on product or product category (which should has higher priority over warehouse route). To fix it, we remove the route_ids when create the move for PO. A route will be found when the move being comfirmed. Task 2448439 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr