Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docu] Quantity Price Rules #1716

Merged
merged 5 commits into from
Sep 13, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add quantity price rules for user documentation
  • Loading branch information
lukadschaak committed Aug 23, 2021
commit 0a0e0d94770111fbdb9371df553c23026c6980d0
34 changes: 17 additions & 17 deletions docs/02_User_Documentation/03_Price_Rules/01_Cart_Price_Rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ Cart Price Rules can also be used with voucher codes.

## Available Actions

- [Free Shipping](./05_Actions.md#free-shipping)
- [Gift Product](./05_Actions.md#gift-product)
- [Discount Amount](./05_Actions.md#discount-amount)
- [Discount Percent](./05_Actions.md#discount-percent)
- [Free Shipping](./06_Actions.md#free-shipping)
- [Gift Product](./06_Actions.md#gift-product)
- [Discount Amount](./06_Actions.md#discount-amount)
- [Discount Percent](./06_Actions.md#discount-percent)

## Available Conditions

- [Customers](./06_Conditions.md#customers)
- [Customer Groups](./06_Conditions.md#customer-groups)
- [Time Span](./06_Conditions.md#time-span)
- [Voucher](./06_Conditions.md#voucher)
- [Amount](./06_Conditions.md#amount)
- [Countries](./06_Conditions.md#countries)
- [Zones](./06_Conditions.md#zones)
- [Stores](./06_Conditions.md#stores)
- [Currencies](./06_Conditions.md#currencies)
- [Carriers](./06_Conditions.md#carriers)
- [Nested Rules](./06_Conditions.md#nested-rules)
- [Products](./06_Conditions.md#products)
- [Categories](./06_Conditions.md#categories)
- [Customers](./07_Conditions.md#customers)
- [Customer Groups](./07_Conditions.md#customer-groups)
- [Time Span](./07_Conditions.md#time-span)
- [Voucher](./07_Conditions.md#voucher)
- [Amount](./07_Conditions.md#amount)
- [Countries](./07_Conditions.md#countries)
- [Zones](./07_Conditions.md#zones)
- [Stores](./07_Conditions.md#stores)
- [Currencies](./07_Conditions.md#currencies)
- [Carriers](./07_Conditions.md#carriers)
- [Nested Rules](./07_Conditions.md#nested-rules)
- [Products](./07_Conditions.md#products)
- [Categories](./07_Conditions.md#categories)
30 changes: 15 additions & 15 deletions docs/02_User_Documentation/03_Price_Rules/02_Product_Price_Rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ Product Price Rules are applied directly on products and the "discounted" price

## Available Actions

- [Price](./05_Actions.md#price)
- [Discount Price](./05_Actions.md#discount-price)
- [Discount Amount](./05_Actions.md#discount-amount)
- [Discount Percent](./05_Actions.md#discount-percent)
- [Price](./06_Actions.md#new-price)
- [Discount Price](./06_Actions.md#discount-price)
- [Discount Amount](./06_Actions.md#discount-amount)
- [Discount Percent](./06_Actions.md#discount-percent)

## Available Conditions

- [Customers](./06_Conditions.md#customers)
- [Customer Groups](./06_Conditions.md#customer-groups)
- [Time Span](./06_Conditions.md#time-span)
- [Voucher](./06_Conditions.md#voucher)
- [Countries](./06_Conditions.md#countries)
- [Zones](./06_Conditions.md#zones)
- [Stores](./06_Conditions.md#stores)
- [Currencies](./06_Conditions.md#currencies)
- [Nested Rules](./06_Conditions.md#nested-rules)
- [Products](./06_Conditions.md#products)
- [Categories](./06_Conditions.md#categories)
- [Customers](./07_Conditions.md#customers)
- [Customer Groups](./07_Conditions.md#customer-groups)
- [Time Span](./07_Conditions.md#time-span)
- [Voucher](./07_Conditions.md#voucher)
- [Countries](./07_Conditions.md#countries)
- [Zones](./07_Conditions.md#zones)
- [Stores](./07_Conditions.md#stores)
- [Currencies](./07_Conditions.md#currencies)
- [Nested Rules](./07_Conditions.md#nested-rules)
- [Products](./07_Conditions.md#products)
- [Categories](./07_Conditions.md#categories)
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# CoreShop Specific Price Rules

Specific Prices are basically the same as Product Price Rules, but are configured directly on the
product and therefore are only applied on that product.

It is recommended to have at least one specific price, which is always applicable. For example a
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is not, why should it?

rule with no conditions.

![Specific Price Rules](img/specific-price-rules.png)

## Available Actions

- [Price](./06_Actions.md#new-price)
- [Discount Price](./06_Actions.md#discount-price)
- [Discount Amount](./06_Actions.md#discount-amount)
- [Discount Percent](./06_Actions.md#discount-percent)

## Available Conditions

- [Customers](./07_Conditions.md#customers)
- [Customer Groups](./07_Conditions.md#customer-groups)
- [Time Span](./07_Conditions.md#time-span)
- [Countries](./07_Conditions.md#countries)
- [Zones](./07_Conditions.md#zones)
- [Stores](./07_Conditions.md#stores)
- [Currencies](./07_Conditions.md#currencies)
- [Nested Rules](./07_Conditions.md#nested-rules)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# CoreShop Quantity Price Rules

Quantity Price Rules are configured directly on the product and therefore are only applied
on that product. The settings are different to specific price rules. Calculation Behaviour
means the property on which the amount is determined. This is volume per default.

Quantity price rules are only applied to the price in context of a cart. In other cases the
price calculator ignores them. So it is recommended to not have quantity price rules alone,
but to have at least a default specific price (or a store values entry).
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't recommend things here.


![Specific Price Rules](img/quantity-price-rules.png)

## Available Conditions

- [Customers](./07_Conditions.md#customers)
- [Customer Groups](./07_Conditions.md#customer-groups)
- [Time Span](./07_Conditions.md#time-span)
- [Countries](./07_Conditions.md#countries)
- [Zones](./07_Conditions.md#zones)
- [Stores](./07_Conditions.md#stores)
- [Currencies](./07_Conditions.md#currencies)
- [Nested Rules](./07_Conditions.md#nested-rules)
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Define a time span in which range the price rule is valid
## Voucher
> **Available for**: Cart Price Rules

Define some Voucher Conditions. Check out the [Voucher Section](./04_Vouchers.md) to learn more about Voucher Configuration.
Define some Voucher Conditions. Check out the [Voucher Section](./05_Vouchers.md) to learn more about Voucher Configuration.

#### Options

Expand Down Expand Up @@ -150,4 +150,4 @@ Apply rule only if products linked with given categories are available.

| Name | Description|
|:-----|:--------------------|
| Categories | One ore multiple CoreShop Category Objects |
| Categories | One ore multiple CoreShop Category Objects |
8 changes: 4 additions & 4 deletions docs/02_User_Documentation/03_Price_Rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Read more about automation [here](../10_Automation/README.md#expired-rules).

- [Cart Price Rules](./01_Cart_Price_Rules.md)
- [Product Price Rules](./02_Product_Price_Rules.md)
- [Specific Product Prices](./03_Specific_Product_Prices.md)
- [Vouchers](./04_Vouchers.md)
- [Available Actions](./05_Actions.md)
- [Available Conditions](./06_Conditions.md)
- [Specific Product Prices](./03_Specific_Price_Rules.md)
- [Vouchers](./05_Vouchers.md)
- [Available Actions](./06_Actions.md)
- [Available Conditions](./07_Conditions.md)
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions docs/02_User_Documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ This section provides a quick getting started tutorial for CoreShop and covers t
3. [Price Rules](./03_Price_Rules/README.md)
1. [Cart Price Rules](./03_Price_Rules/01_Cart_Price_Rules.md)
2. [Product Price Rules](./03_Price_Rules/02_Product_Price_Rules.md)
3. [Specific Product Price](./03_Price_Rules/03_Specific_Product_Prices.md)
4. [Vouchers](./03_Price_Rules/04_Vouchers.md)
5. [Available Actions](./03_Price_Rules/05_Actions.md)
6. [Available Conditions](./03_Price_Rules/06_Conditions.md)
3. [Specific Product Price](./03_Price_Rules/03_Specific_Price_Rules.md)
4. [Vouchers](./03_Price_Rules/05_Vouchers.md)
5. [Available Actions](./03_Price_Rules/06_Actions.md)
6. [Available Conditions](./03_Price_Rules/07_Conditions.md)
4. [Localization](./04_Localization/README.md)
1. [Countries](./04_Localization/01_Countries.md)
2. [States](./04_Localization/02_States.md)
Expand Down Expand Up @@ -43,4 +43,4 @@ This section provides a quick getting started tutorial for CoreShop and covers t
7. [Carrier Distribution](./09_Reports/07_Carrier_Distribution.md)
8. [Payment Distribution](./09_Reports/08_Payment_Distribution.md)
9. [Vouchers](./09_Reports/09_Vouchers.md)
12. [Automation](./10_Automation/README.md)
12. [Automation](./10_Automation/README.md)
4 changes: 2 additions & 2 deletions docs/03_Development/03_Products/03_Price_Rules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Product price rules are applied to multiple products based on conditions like ca

### Specific Price Rules

> Checkout all available specific price rules [here](../../../02_User_Documentation/03_Price_Rules/03_Specific_Product_Prices.md)
> Checkout all available specific price rules [here](../../../02_User_Documentation/03_Price_Rules/03_Specific_Price_Rules.md)

Specific price rules are applied to a single product based on conditions like customer or customer group.

### Quantity Price Rules

> Checkout all available quantity price rules [here](../../../02_User_Documentation/03_Price_Rules/04_Quantity_Product_Prices.md)
> Checkout all available quantity price rules [here](../../../02_User_Documentation/03_Price_Rules/04_Quantity_Price_Rules.md)

Quantity price rules are applied to a single product based on conditions like the quantity of a cart item.

Expand Down