I’m working on an E-commerce website for sometime now. We are using spree as backbone of the project and customizing where and when its required. Spree is quite good and fully functioning E-commerce Rails engine which give you base to build a e-commerce website quickly and with lesser efforts.
One of the main features of any e-commerce website is Promotions/Coupons. Spree also has a built in spree promotion module which is ready to use with predefined rules and adjustment calculators. Being an ADMIN I can define any new promotion rules i.e. first order, user specific, products specific etc. Also I can define the actions like ALL or ANY. You can have a look on spree_promo module at spree_promo and see how it works.
Spree already provides some 4-5 predefined Promotions Rules on the basis of which every order get cross-checked whether some adjustments has to be done or not. Most of the time these rules/calculators are more than enough in general usage, but sometimes we need few very specific CUSTOM rules to be defined. Here I’m going to explain how easy it is to create new spree promotion rules.
Create Promotion Rule:
step1. create a model file app/models/spree/promotion/rules/my_custom_promotion.rb
module Spree
class Promotion::Rules::MyCustomPromotion < PromotionRule
// required associations or preferences if any
// required attribute accessible if you need to protect some attributes from
mass assignment
// match polices and operators
MATCH_POLICIES = %w(any all) // as per your requirement
def eligible?(order, options={})
// This method is the place where every order is being verified whether its
eligible for any promotional discount
end
end
end
Step2. Add this custom promotion rule to default spree promotion rules list. Write the following code in either application.rb or some initializer
initializer "spree.promo.register.promotions.rules" do |app|
app.config.spree.promotions.rules += [Spree::Promotion::Rules::MyCustomPromotion]
end
Step3. Add the translations for name & description for custom rule as spree use the standard view for all with Translation method t(‘name’) or t(‘description’). write the following code in your config/locales/en.yml(or any other locale file if you are having multilingual products).
en:
promotion_rule_types:
product_by_tag:
name: Products By MyCustomPromotion
description: Add products from MyCustomPromotion
Step4. create the view partial file for the custom promotion rule. add a file to app/admin/promotions/rules/_my_custom_promotion.html.erb or haml or something else depending on the template engine you are using for views.
And, restart your application server and you are good to go. Now whenever you are going to edit the Promotion, in the promotions rules list you will see you custom rule also available.
NOTE:: if you want some custom price adjustments/calculations as well, then you have to create a new calculator. E.g. If I want to define some flat percentage benefit on my custom promotion we have to create app/models/spree/calculator/flat_percentage.rb
module Spree
class Calculator::FlatPercetange < Calculator
// preferences if there are any.
// attributes accessibles
def compute(object)
// main method where we have to compute the adjustments we have to made.
end
end
end
I hope it helped someone. In case of any query, please feel free to ask here or drop me a mail at skr.ymca@gmail.com
Pingback: Spree Extend: Updating eligibility criteria for any existing promotion rule « Ruby on Rails
I am unable to get the initializer block to work–I keep getting an error saying there is no such method as ‘initializer’ for main:Object. I tried changing that to Rails::Railtie:initializer but the block never executes…any suggestions?
Kaplan,
sorry for late reply. Ahh, its hard to tell without looking into code sample how you are doing it. 2nd it depends which version of Spree you are using (as this is tested for 0.70.x).