Documentation Home

Broadleaf ProductType 1.2.0-GA

This is the initial release of Broadleaf ProductType 1.2.0 module. This version of ProducType requires at a mimimum:

Broadleaf Framework 5.2.4-GA+
Broadleaf Merchandising Group 1.2.0-GA+
Broadleaf PriceList 3.2.0-GA+
Broadleaf Enterprise Search 2.1.1-GA+

Notes

The primary new feature included in this release is the ability to select a "Specific Sku" when defining which AddOn should be used.

Migration

The new "Specific Sku" capabilities requires the addition of a new column to the BLC_PRODUCT_ADD_ON_XREF table. You will need to consult the documentation of your database platform for adding a new column. Here is an example of the changes needed for a MySQL database. It is also recommended to add an index to the ADD_ON_SKU_ID foreign key column,

ALTER TABLE BLC_PRODUCT_ADD_ON_XREF
  ADD COLUMN ADD_ON_SKU_ID bigint(20) NULL,
  ADD CONSTRAINT FKEB628247770ADDB9 FOREIGN KEY (ADD_ON_SKU_ID) REFERENCES BLC_SKU(SKU_ID);