Tuesday, April 7, 2020
2 changes · master
Resolved issues and error corrections
This fixes errors that could occur when granting portal access to a customer or setting a password for a portal user. The change makes the web client handle empty context values safely, preventing interruptions during portal user setup.
Original PR description
there are two tracebacks, - while granting portal access to customer, and - while create a portal user and changing it's password. traceback is there because of value in context's key. if any key has value none or undefined then value hasn't constructor obviously. so, there were traceback to undefined has no attribute constructor. after this commit issue will bw solvwd. we have added condition if context has value then, it find the constructor. TaskID: 2229600 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
This fix prevents cancelled stock or manufacturing moves from changing how related deliveries are replenished. It ensures duplicated deliveries for make-to-order manufactured products consistently trigger the needed production, avoiding missed replenishment after cancellations.
Original PR description
Cancelling a move will, if the cancellation isn't propagated, force the
procure method of move_dest_ids to `mts`. This has no real use case and
is even more problematic in case of selling mto/manufacture.
ex: confirm the sale order. Cancel the delivery and the production then
duplicate the delivery.
- if the delivery was cancelled before the production, another
production is created.
- if the delivery was cancelled after the production, no other
production is created.
In the second case, the production cancellation will reset the procure
method of the delivery. The duplication will not trigger the mto
procurement.
Task : 2212125
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