Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: R1709192 - SalaryStep entity upgrade

...

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
Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyOFBIZ-

...

4194

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.

...

Before doing this upgrade, make a backup of your framework/images/webapp/images directory because the existing subdirectories will be deleted because of a reorganization. After the upgrade if you restore these dictories your system will work again and images can be found. Mor info at: https://issues.apache.org/jira/browse/

Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyOFBIZ-4194

R1204455 Move of webstatistics and simplification

After upgrade: webanalytics entity has moved from product to content, this entity has normally only a single record per website so a conversion program is not provided. After upgrade, save the content of the entity web_analytics_config and drop it in webtools. Then restart and re-enter the saved record.
If you already using this feature in your ecommerce remove the line:
<field-map field-name="isEnabled" value="Y"/>
from the file ofbiz/trunk/specialpurpose/ecommerce/widget/CommonScreens.xml

R1222544

...

adds the possibility of adding tags to products next to having keywords to products, can also optionally approve/reject via a status field"

This affects the upgrade of the productKeyword entity. If the content can be re-generated, just run the generate keywords program, if you want to keep the content then see the service: migrateProductKeyword in file: applications/product/servicedef/services_upgrade.xml for more information

...

Trunk r1557447+57, R13.07 r1557448+58, R12.04 r1557449+59: Improve the GeoPoint data model

...

Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyOFBIZ-5758

  1. export the GeoPoint entity with webtools export.
  2. drop the table
  3. restart the system.
  4. Import the exported file

 

R1709192 "SalaryStep entity was missing From and Thru dates"
Jira
serverASF JIRA
serverId5aa69414-a9e9-3523-82ec-879b028fb15b
keyOFBIZ-5758

This added the fromDate, createdByUserLogin and lastModifiedByUserLogin fields, fromDate is a PK field.

After upgrade run the 'migrateCustRequestRole' service to copy the current data to the new table (from OldSalaryStep to SalaryStep).