[
new DiscountItems({
include: {
collection_includes: "promo_20-off"
},regular_priced_only: true,
discount: new PercentageDiscount(20),message: "20 % DE RABAIS",
display_messaging: true,
calculate_price: true,
stack: false,
type: "20% OFF",
colors: {
background: "#ffffff",
text: "#000000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_sp-50"
},regular_priced_only: true,
discount: new PercentageDiscount(50),message: "50 % DE RABAIS – EXCLUSIF EN LIGNE",
display_messaging: true,
calculate_price: true,
stack: false,
type: "50% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_60-off"
},regular_priced_only: true,
discount: new PercentageDiscount(70),message: "70 % DE RABAIS – EXCLUSIF EN LIGNE",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% OFF HARDGOODS",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_70-off"
},regular_priced_only: true,
discount: new PercentageDiscount(70),message: "LIQUIDATION - 70% DE RABAIS",
display_messaging: true,
calculate_price: true,
stack: false,
type: "70% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_80-off"
},regular_priced_only: true,
discount: new PercentageDiscount(80),message: "LIQUIDATION - 80% DE RABAIS",
display_messaging: true,
calculate_price: true,
stack: false,
type: "80% OFF",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),
new DiscountItems({
include: {
collection_includes: "promo_markdown_-5"
},regular_priced_only: true,
discount: new PriceDiscount(4.99),message: "LIQUIDATION - 4,99 $",
display_messaging: true,
calculate_price: true,
stack: false,
type: "MARKDOWN $5",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),new QuantityTier({
include: {
collection_includes: "promo_2-for-6"
},regular_priced_only: true,
tiers: [{
buy: 2,price: 6,message: "",
},],message: "LIQUIDATION – 2 POUR 6 $",
display_messaging: true,
calculate_price: false,
stack: false,
type: "2 FOR $6",
colors: {
background: "#ffffff",
text: "#ff0000"
},
}),]