Thursday, August 1, 2019
2 changes · master
Resolved issues and error corrections
This update adjusts how average product costs are calculated so small currency rounding differences are reduced. It helps keep inventory valuation and invoice-related accounting amounts more consistent, especially in Anglo-Saxon accounting flows.
Original PR description
Since the introduction of the stock valuation layer, unit_cost is rounded in the company currency (actually it is NOT because of an ORM bug that will be fixed later). With the test introduced at [0], fixing that ORM bug shows we have a rounding issue (27.02 instead of 27) due to the company currency rounding on the unit_cost. Since the logic of the anglo saxon will probably always give some rounding issue (we always return a price unit that will be multiply by the invoiced quantity) recomputing a not rounded price unit by using the not rounded value with the not rounded quantity seems a good enough compromise. [0] 13a535a0918f6f75d8c631a465fbc9238ea954bf
Restores a planning date used by the manufacturing master production schedule to decide whether a purchase order already covers a need. This helps avoid unnecessary duplicate purchase orders after a related purchasing logic change.
Original PR description
Community changed the logic of date_planned on the PO but mrp_mps still needs the original to know if it should create a new po or not. Reintroduce the needed field. task-2032417