Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This script should be run intially to move values from square_footage to facility_size and set the Uom
UPDATE Facility SET facility_size=square_footage;
UPDATE Facility SET facility_size_uom_id='AREA_ft2';
then the square_footage column might be removed
ALTER TABLE Facility DROP COLUMN square_footage;

R935969: Production run cost formulae are cloned when a production run is created OFBIZ-3724

If you have open production runs before the upgrade then production run costs will not be computed when the order is finalized; in fact, after the upgrade the system will clone WorkEffortCostCalc from the routing definition to the production run and will only consider the cloned records when the production run is finalized.