Daily updates from Odoo
Monday, July 30, 2018
2 changes · master
Resolved issues and error corrections
This fixes a missing routing action for delivery resupply flows in Inventory. It helps ensure delivery replenishment follows the intended warehouse route behavior, reducing the chance of incorrect or incomplete stock movements.
Original PR description
Since commit a35df8d37170790257876a54aa54f2c3ab596c44 action has been added on routing however it was forget in delivery ressuply case. 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
Online shop payments now use the billing address selected by the customer consistently across payment flows. This prevents transactions, including Authorize.net payments, from being created with a different invoice partner address than the one chosen at checkout.
Original PR description
Let's consider the partner P1 with the address A1 and its invoice partner P2 with the address A2. When creating a transaction in the shop for P1 with billing address = A1: - if option Payment Flow = Redirection to the acquirer website => the billing address of the transaction is A1 - if if option Payment Flow = Payment from Odoo => the billing address of the transaction was A2 Now with this patch, the billing address is A1 in each case. opw:1867188