Calculators
Overview
Spree makes extensive use of the Spree::Calculator
model and there are several subclasses provided to deal with various types of calculations flat rate, percentage discount, sales tax, VAT, etc. All calculators extend the Spree::Calculator
class and must provide the following methods:
Calculators link to a calculable
object, which are typically one of Spree::ShippingMethod
, Spree::TaxRate
, or Spree::Promotion::Actions::CreateAdjustment
. These three classes use the Spree::Core::CalculatedAdjustment
module described below to provide an easy way to calculate adjustments for their objects.
Available Calculators
The following are descriptions of the currently available calculators in Spree. If you would like to add your own, please see the Creating a New Calculator section.
Default Tax
For information about this calculator, please read the Taxation guide.
Flat Percent Per Item Total
This calculator has one preference: flat_percent
and can be set like this:
This calculator takes an order and calculates an amount using this calculation:
For example, if an order had an item total of 3.10, because 3.10.
Flat Rate
This calculator can be used to provide a flat rate discount.
This calculator has two preferences: amount
and currency
. These can be set like this:
The currency for this calculator is used to check to see if a shipping method is available for an order. If an order’s currency does not match the shipping method’s currency, then that shipping method will not be displayed on the frontend.
This calculator can take any object and will return simply the preferred amount.
Flexi Rate
This calculator is typically used for promotional discounts when you want a specific discount for the first product, and then subsequent discounts for other products, up to a certain amount.
This calculator takes three preferences:
first_item
: The discounted price of the first items.additional_item
: The discounted price of subsequent items.max_items
: The maximum number of items this discount applies to.
The calculator computes based on this:
- up to the
max_items
Thus, if you have ten items in your shopping cart, your first_item
preference is set to 5, and your max_items
preference is set to 4, the total discount would be$25:
- $10 for the first item
- 5 * 3 = $15
- $0 for the remaining 6 items
Per Item
The Per Item calculator computes a value for every item within an order. This is useful for providing a discount for a specific product, without it affecting others.
This calculator takes two preferences:
amount
: The amount per item to calculate.currency
: The currency for this calculator.
This calculator depends on its calculable
responding to a promotion
method, which should return a Spree::Promotion
or similar object. This object should then return a list of rules, which should respond to a products
method. This is used to return a result of matching products.
The list of matching products is compared against the line items for the order being calculated. If any of the matching products are included in the order, they are eligible for this calculator. The calculation is this:
[matching product quantity] x [amount]
Every matching product within an order will add to the calculator’s total. For example, assuming the calculator has an amount
of 5 and there’s an order with the following line items:
- Product A: $15.00 x 2 within matching products
- Product B: $10.00 x 1 within matching products
- Product C: $20.00 x 4 excluded from matching products
The calculation would be:
meaning the calculator will compute an amount of 15.
Percent Per Item
The Percent Per Item calculator works in a near-identical fashion to the Per Item Calculator, with the exception that rather than providing a flat-rate per item, it is a percentage.
Assuming a calculator amount of 10% and an order such as this:
- Product A: $15.00 x 2 within matching products
- Product B: $10.00 x 1 within matching products
- Product C: $20.00 x 4 excluded from matching products
The calculation would be:
The calculator will calculate a discount of $4.
Price Sack
The Price Sack calculator is useful for when you want to provide a discount for an order which is over a certain price. The calculator has four preferences:
minimal_amount
: The minimum amount for the line items total to trigger the calculator.discount_amount
: The amount to discount from the order if the line items total is equal to or greater than theminimal_amount
.normal_amount
: The amount to discount from the order if the line items total is less than theminimal_amount
.currency
: The currency for this calculator. Defaults to the currency you have set for your application withSpree::Config[:currency]
Suppose you have a Price Sack calculator with a minimal_amount
preference of 2, and a discount_amount
of60 would result in a discount of20 would result in a discount of$2.
Creating a New Calculator
To create a new calculator for Spree, you need to do two things. The first is to inherit from the Spree::Calculator
class and define description
and compute
methods on that class:
If you are creating a new calculator for shipping methods, please be aware that you need to inherit from Spree::ShippingCalculator
instead, and define a compute_package
method:
The second thing is to register this calculator as a tax, shipping, or promotion adjustment calculator by calling code like this at the end of config/initializers/spree.rb
inside your application config
variable defined for brevity:
For example if your calculator is placed in app/models/spree/calculator/shipping/my_own_calculator.rb
you should call:
Determining Availability
By default, all shipping method calculators are available at all times. If you wish to make this dependent on something from the order, you can re-define the available?
method inside your calculator:
Calculated Adjustments
If you wish to use Spree’s calculator functionality for your own application, you can include the Spree::Core::CalculatedAdjustments
module into a model of your choosing.
To have calculators available for this class, you will need to register them:
Then you can access these calculators by calling this method:
Using this method, you can then display the calculators as you please. Each object for this new class will need to have a calculator associated so that adjustments can be calculated on them.
This module provides a has_one
association to a calculator
object, as well as some convenience helpers for creating and updating adjustments for objects. Assuming that an object has a calculator associated with it first, creating an adjustment is simple:
To update this adjustment:
To work out what the calculator would compute an amount to be:
create_adjustment
, update_adjustment
and compute_amount
will call compute
on the Calculator
object. This calculable
amount is whatever object your CustomCalculator
class supports.
Was this page helpful?