Skip to content

Commit 8f7079f

Browse files
authored
Merge pull request #26 from Jonne/Fix-merge-issue-readme
Fix merge error
2 parents ed9ffe2 + 3808f27 commit 8f7079f

File tree

1 file changed

+1
-122
lines changed

1 file changed

+1
-122
lines changed

README.md

+1-122
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The action will do the following:
168168
169169
#### $ discount on every N-th qualifying product
170170

171-
Will apply a fixed amount discount to a number of products, when the specified minimum amount of products are added to the cart.
171+
Will apply a fixed amount discount to a number of products in a category, when a specified amount of products from that category have been added to the cart.
172172

173173
When a benefit is added to a promotion, the following action will be available in the list:
174174

@@ -264,127 +264,6 @@ The action will do the following:
264264
265265
> Uses the same rounding algorithm as Sitecore uses in its benefits.
266266
267-
## Resources
268-
269-
`For every [Items to award] of [Items to purchase] products in [Category] you get [Percentage Off] on the [Apply Award To] with a limit of [Award Limit]`
270-
271-
| Variable | Type | Default value |Description |
272-
| ------------- |-------------| ----- | -------- |
273-
|Category |category | |a fully qualified category path |
274-
|Include sub categories |bool |true |indicates whether sub categories are included|
275-
|Items to purchase |integer | |indicates the number of items (N) to be puchased for the discount to be applied|
276-
|Items to award |integer | |indicates the number of items (X) the discount will be applied to|
277-
|Percentage Off |decimal | |the percentage to deduct from the item price|
278-
|Award Limit |integer | |the maximum number of times the benefit will be applied|
279-
|Apply Award To |option |Least Expensive Items First |indicates whether the most of least expensive items will be awarded first: Most Expensive Items First/Least Expensive Items First|
280-
281-
The action will do the following:
282-
283-
1. Select the eligable items
284-
2. Sort the items by most/least expensive
285-
3. Calculate the number of times the discount should be applied
286-
4. Apply the discount to the most/least expensive items
287-
288-
> Cart line quantity is taken into account, meaning that a cart line with a quantity of 10 could have the discount applied twice, resulting in 2 discounted products and 8 at full price.
289-
290-
> Uses the same rounding algorithm as Sitecore uses in its benefits.
291-
292-
#### $ discount on every N-th qualifying product
293-
294-
Will apply a fixed amount discount to a number of products in a category, when a specified amount of products from that category have been added to the cart.
295-
296-
When a benefit is added to a promotion, the following action will be available in the list:
297-
298-
`For every [Items to award] of [Items to purchase] products in [Category] you get [Amount Off] on the [Apply Award To] with a limit of [Award Limit]`
299-
300-
| Variable | Type | Default value |Description |
301-
| ------------- |-------------| ----- | -------- |
302-
|Category |category | |a fully qualified category path |
303-
|Include sub categories |bool |true |indicates whether sub categories are included|
304-
|Items to purchase |integer | |indicates the number of items (N) to be puchased for the discount to be applied|
305-
|Items to award |integer | |indicates the number of items (X) the discount will be applied to|
306-
|Amount Off |decimal | |the amount to deduct from the item price|
307-
|Award Limit |integer | |the maximum number of times the benefit will be applied|
308-
|Apply Award To |option |Least Expensive Items First |indicates whether the most of least expensive items will be awarded first: Most Expensive Items First/Least Expensive Items First|
309-
310-
The action will do the following:
311-
312-
1. Select the eligable items
313-
2. Sort the items by most/least expensive
314-
3. Calculate the number of times the discount should be applied
315-
4. Apply the discount to the most/least expensive items
316-
317-
> Cart line quantity is taken into account, meaning that a cart line with a quantity of 10 could have the discount applied twice, resulting in 2 discounted products and 8 at full price.
318-
319-
> Uses the same rounding algorithm as Sitecore uses in its benefits.
320-
321-
#### Get $ discount on shipping
322-
Will deduct a fixed amount from the shipping costs when the given qualification is met.
323-
324-
When a benefit is added to a promotion, the following action will be available in the list:
325-
326-
`Get [specific amount] off the shipping cost`
327-
328-
| Variable | Type | Default value |Description |
329-
| ------------- |-------------| ----- | -------- |
330-
|Amount Off |decimal | |the amount to deduct from the shipping cost|
331-
332-
#### $ discount on products in a specific category
333-
Will apply a fixed amount discount to a number of products in a category, when a specified amount of products from that category have been added to the cart.
334-
335-
When a benefit is added to a promotion, the following action will be available in the list:
336-
337-
`When you buy [Operator] [Product count] products in [Category] you get [Amount off] per product (ordered by [apply award to]) with a maximum of [award limit] products`
338-
339-
| Variable | Type | Default value |Description |
340-
| ------------- |-------------| ----- | -------- |
341-
|Operator |operator | |standard operators |
342-
|Product count |integer | |indicates the numer of products compared using the configured operator|
343-
|Category |category | |a fully qualified category path|
344-
|Include sub categories |bool | true |indicates whether sub categories are included|
345-
|Amount Off |decimal | |the amount to deduct from the product price|
346-
|Award Limit |integer | |the maximum number of products the benefit will be applied to|
347-
|Apply Award To |option |Least Expensive Items First |indicates whether the most of least expensive items will be awarded first: Most Expensive Items First/Least Expensive Items First|
348-
349-
The action will do the following:
350-
351-
1. Select the eligable items
352-
2. Sort the items by most/least expensive
353-
3. Calculate the number of times the discount should be applied
354-
4. Apply the discount to the most/least expensive items
355-
356-
> Cart line quantity is taken into account, meaning that a cart line with a quantity of 10 could have the discount applied twice, resulting in 2 discounted products and 8 at full price.
357-
358-
> Uses the same rounding algorithm as Sitecore uses in its benefits.
359-
360-
#### % discount on products in a specific category
361-
Will apply a percentageamount discount to a number of products in a category, when a specified amount of products from that category have been added to the cart.
362-
363-
When a benefit is added to a promotion, the following action will be available in the list:
364-
365-
`When you buy [Operator] [specific value] products in [specific category] you get [Percentage off] per product (ordered by [apply award to]) with a maximum of [award limit] products`
366-
367-
| Variable | Type | Default value |Description |
368-
| ------------- |-------------| ----- | -------- |
369-
|Operator |operator | |standard operators |
370-
|Product count |integer | |indicates the numer of products compared using the configured operator|
371-
|Category |category | |a fully qualified category path|
372-
|Include sub categories |bool | true |indicates whether sub categories are included|
373-
|Percentage Off |decimal | |the percentage to deduct from the product price|
374-
|Award Limit |integer | |the maximum number of products the benefit will be applied to|
375-
|Apply Award To |option |Least Expensive Items First |indicates whether the most of least expensive items will be awarded first: Most Expensive Items First/Least Expensive Items First|
376-
377-
The action will do the following:
378-
379-
1. Select the eligable items
380-
2. Sort the items by most/least expensive
381-
3. Calculate the number of times the discount should be applied
382-
4. Apply the discount to the most/least expensive items
383-
384-
> Cart line quantity is taken into account, meaning that a cart line with a quantity of 10 could have the discount applied twice, resulting in 2 discounted products and 8 at full price.
385-
386-
> Uses the same rounding algorithm as Sitecore uses in its benefits.
387-
388267
## Contributing
389268

390269
### Prerequisites

0 commit comments

Comments
 (0)