Broadleaf CartRules 1.1.4-GA
Release Date: September 27th, 2018
This is the 4th patch release of the Broadleaf CartRules 1.1.x module. This version of Cart Rules requires Broadleaf Framework version 5.2.0-GA or higher.
New and Noteworthy
Introducing new optional feature for Cart Rules. This is a feature to limit the number of times each Cart Rule triggers per customer.
No further steps required if this feature is not intended to be used.
Follow these steps to enable this feature:
First add a column with the name "TIMES_PER_CUSTOMER" to the table "BLC_CART_RULE":
ALTER TABLE BLC_CART_RULE ADD TIMES_PER_CUSTOMER int;
Second set the values for the column. Setting it zero keeps the behavior of the existing Cart Rules same as before:
UPDATE BLC_CART_RULE SET TIMES_PER_CUSTOMER = 0;
Finally set the property to true:
enable.weave.cartrule.timesPerCustomer=true
An at-a-glance view of the issues that were closed in this release:
Enhancements(1)
- Enhancement of cartRules to add restrictions per customer
Total Resolved Issues: 1